Trying to fix gh-pages url path issues #1880
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: Python tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
DEX_CI: 1 | |
concurrency: | |
group: python-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
include: | |
- os: ubuntu-20.04 | |
install_deps: sudo apt-get install llvm-12-tools llvm-12-dev pkg-config wget gzip | |
path_extension: /usr/lib/llvm-12/bin | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install system dependencies | |
run: | | |
pip install pytest jax jaxlib | |
${{ matrix.install_deps }} | |
echo "${{ matrix.path_extension }}" >> $GITHUB_PATH | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.stack | |
~/.cache/pip | |
$GITHUB_WORKSPACE/.stack-work | |
key: ${{ runner.os }}-v2-python-${{ hashFiles('**/*.cabal', 'stack*.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-v2-python- | |
${{ runner.os }}-v2- | |
- name: Build | |
run: make build-ffis | |
- name: Install Python bindings | |
run: pip install -e $GITHUB_WORKSPACE/python | |
- name: Run tests | |
run: pytest python/tests |