Skip to content

Commit

Permalink
Update GitHub Actions workflow to run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Feb 8, 2024
1 parent 2a24b7f commit b61e713
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/test.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run unit tests

on:
push:
branches:
- "**"
pull_request:
branches:
- "**"

concurrency:
group: unit-test-${{ github.head_ref }}
cancel-in-progress: true

env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"

jobs:
run:
name: Python ${{ matrix.python-version }} on Linux
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3

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

- name: Install packages
run: |
pip install --upgrade pip
pip install -e '.[tests]'
pip list
- name: Run tests
run: pytest -vv --cov --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
verbose: true

0 comments on commit b61e713

Please sign in to comment.