Skip to content

Commit

Permalink
debug, no fail fast, add py310
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Apr 18, 2022
1 parent a572d86 commit 4f2ebc4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ name: Code Tests
on:
pull_request:
push:
branches: [master]
branches: [master, main]

jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9". "3.10"]
fail-fast: false

steps:
- uses: actions/checkout@v2
Expand All @@ -29,6 +30,12 @@ jobs:
conda create --name TEST python=${{ matrix.python-version }} pip --file requirements.txt --file requirements-dev.txt
source activate TEST
pip install -e . --no-deps --force-reinstall
- name: Debug Installation
shell: bash -l {0}
run: |
source activate TEST
which python
conda info --all
conda list
Expand Down

0 comments on commit 4f2ebc4

Please sign in to comment.