Test that each model can be converted to TorchScript. #155
Workflow file for this run
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: Build and test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
pre_job: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
concurrent_skipping: 'same_content_newer' | |
build: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
name: build (${{ matrix.python-version }}, ${{ matrix.platform.name }}) | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
max-parallel: 9 | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10"] | |
platform: | |
- { name: "linux", os: "ubuntu-latest", shell: "bash -l {0}" } | |
defaults: | |
run: | |
shell: ${{ matrix.platform.shell }} | |
steps: | |
# | |
- name: Checkout the repository (commit) | |
uses: actions/checkout@v4 | |
if: github.event_name != 'pull_request' | |
# | |
- name: Checkout the repository (PR) | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
if: github.event_name == 'pull_request' | |
# | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
activate-environment: emle | |
environment-file: environment.yaml | |
miniforge-version: latest | |
# | |
- name: Install additional test dependencies | |
run: conda install pytest nnpops mace-torch | |
# | |
- name: Install the package | |
run: pip install . | |
# | |
- name: Run the tests | |
run: python -m pytest -svvv --color=yes tests |