Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
atong01 committed Nov 21, 2023
1 parent e476874 commit 2add3bd
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Runner Tests

on:
push:
Expand Down Expand Up @@ -28,7 +28,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r runner-requirements.txt
pip install pytest
pip install sh
pip install -e .
Expand All @@ -39,7 +38,7 @@ jobs:
- name: Run pytest
run: |
pytest -v runner
pytest -v --ignore=examples --ignore=runner
# upload code coverage report
code-coverage:
Expand All @@ -57,14 +56,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r runner-requirements.txt
pip install pytest
pip install pytest-cov[toml]
pip install sh
pip install -e .
- name: Run tests and collect coverage
run: pytest runner --cov runner # NEEDS TO BE UPDATED WHEN CHANGING THE NAME OF "src" FOLDER
run: pytest . --cov torchcfm --ignore=examples --ignore=runner

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
70 changes: 70 additions & 0 deletions .github/workflows/test_runner.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Tests

on:
push:
branches: [main]
pull_request:
branches: [main, "release/*"]

jobs:
run_tests_ubuntu:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-20.04, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r runner-requirements.txt
pip install pytest
pip install sh
pip install -e .
- name: List dependencies
run: |
python -m pip list
- name: Run pytest
run: |
pytest -v runner
# upload code coverage report
code-coverage:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r runner-requirements.txt
pip install pytest
pip install pytest-cov[toml]
pip install sh
pip install -e .
- name: Run tests and collect coverage
run: pytest runner --cov runner # NEEDS TO BE UPDATED WHEN CHANGING THE NAME OF "src" FOLDER

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

0 comments on commit 2add3bd

Please sign in to comment.