Compatibility #1
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 | ||
Check failure on line 11 in .github/workflows/compatibility.yml GitHub Actions / CompatibilityInvalid workflow file
|
||
python-version: '3.10' | ||
toxenv: py310-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 | ||
python-version: ${{ matrix.python-version }} | ||
channels: conda-forge | ||
- name: Install Dependencies | ||
shell: bash -el {0} | ||
run: | | ||
pip install tox-conda | ||
- name: Run Tests | ||
shell: bash -el {0} | ||
run: | | ||
tox -e ${{ matrix.toxenv }} ${{ matrix.toxargs }} -- ${{ matrix.toxposargs }} |