Fix typos #52
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: test-suite | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest Docker Compose | |
run: | | |
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" -o docker-compose | |
chmod +x docker-compose | |
mv docker-compose /usr/local/bin/docker-compose | |
- name: Test PHP 8.3 | |
run: make test PHP=8.3 | |
- name: Test PHP 8.2 | |
run: make test PHP=8.2 | |
- name: Test PHP 8.1 | |
run: make test PHP=8.1 | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: build |