Merge pull request #741 from nu-radio/rnog_trigger #71
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: Check compatibility | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
jobs: | |
version: | |
strategy: | |
fail-fast: false # continue even if one of the versions fails | |
matrix: | |
python_version: ["3.8", "3.9", "3.10", "3.11", "3.x"] # 3.x = latest available | |
os: [ubuntu-latest] | |
include: | |
- python_version: "3.6" | |
os: ubuntu-20.04 # python 3.6 is not available with 22.04 on github actions | |
uses: ./.github/workflows/run_tests.yaml | |
with: | |
python_version: ${{ matrix.python_version }} | |
os: ${{ matrix.os }} |