🚨 we have to test the endpoints now #10
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: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [7.4, "8.0", 8.1, 8.2, 8.3] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: test on PHP ${{ matrix.php }} | |
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} |