Skip to content

Verify for unknown architecture fields #1644

Verify for unknown architecture fields

Verify for unknown architecture fields #1644

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.9"
- os: ubuntu-22.04
python-version: "3.12"
- os: macos-11
python-version: "3.12"
# To be restored once we figure out the issue with the windows build
# - os: windows-2019
# python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Install Zsh
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y zsh
touch ~/.zshrc
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox coverage[toml]
- name: run Python tests and collect coverage
run: |
tox -e tests
coverage xml --data-file tests/.coverage
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
- name: upload to codecov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: tests/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}