Compatibility #54
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: Compatibility | |
on: | |
schedule: | |
- cron: '0 4 * * SUN' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.11'] | |
toxenv: [py311-test-all-latest] | |
# release: [main, latest] # there are no releases yet so this would break | |
release: [main] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- if: matrix.release != 'main' | |
name: Checkout Release | |
run: | | |
git checkout tags/$(curl -s https://api.github.com/repos/simonsobs/SOLikeT/releases/${{ matrix.release }} | python -c "import sys, json; print(json.load(sys.stdin)['tag_name'])") | |
- name: Install Conda w/ Python ${{ matrix.python-version }} | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-activate-base: false | |
activate-environment: soliket-tests | |
environment-file: soliket-tests.yml | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
- name: Install Dependencies | |
shell: bash -el {0} | |
run: | | |
pip install tox | |
- name: Run Tests | |
shell: bash -el {0} | |
run: | | |
tox -e ${{ matrix.toxenv }} ${{ matrix.toxargs }} -- ${{ matrix.toxposargs }} |