Skip to content

Commit

Permalink
Setup CI description file
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhongtw committed Jan 21, 2025
1 parent 73b2ab6 commit 59312c5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: check-code-quality

on:
push:
branches: ["*"]

jobs:

"test":
runs-on: ubuntu-24.04
steps:

- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install package
run: python -m pip install .

- name: Run tests
run: python -m unittest discover -v tests

0 comments on commit 59312c5

Please sign in to comment.