Merge pull request #134 from melissalinkert/links #433
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: Validation | |
on: | |
push: | |
pull_request: | |
jobs: | |
validate: | |
name: Validation | |
strategy: | |
matrix: | |
ngff: | |
- '0.1' | |
- '0.2' | |
- '0.3' | |
- '0.4' | |
- 'latest' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- run: python -mpip install --upgrade wheel tox | |
- run: cd ${{matrix.ngff}} && tox |