chore(deps): Bump codecov/codecov-action from 4.6.0 to 5.0.2 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHP tests on alpine | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: php:8.2-fpm-alpine | |
steps: | |
- name: Checkout code | |
run: | | |
apk add git | |
git clone https://github.com/kiwilan/php-filelist.git | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install scout-seeker | |
run: | | |
apk add rustup | |
apk add build-base | |
cargo install scout-seeker | |
- name: Install dependencies | |
run: | | |
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer | |
cd php-filelist && composer install | |
- name: Execute tests | |
run: | | |
cd php-filelist && vendor/bin/pest --ci |