Skip to content

Commit

Permalink
Add test for 32 bit conda envs
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbarrett committed Feb 10, 2021
1 parent 5a0cb4d commit bb7b05c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,39 @@ jobs:
- name: Run Tests
run: |
nox -e tests
anaconda32:
name: ${{ matrix.os }}-anaconda-x86
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0} # setup-miniconda requires using login bash shells to activate env
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
miniconda-version: latest
architecture: x86
- name: Conda Info
run: |
conda info
conda list
- name: Install package
run: pip install .
- name: Print libpython Info
run: |
echo 'NAMES'
find_libpython -v --candidate-names
echo 'PATHS'
find_libpython -v --candidate-paths
echo 'LOCATION'
find_libpython -v
- name: Install Testing Requirements
run: python -m pip install nox
- name: Run Tests
run: python -m nox -e tests

0 comments on commit bb7b05c

Please sign in to comment.