Skip to content

Commit

Permalink
chore(ci): toxを使ったテストを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
NEKOYASAN committed Nov 1, 2023
1 parent bd441a2 commit 14f1fc2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Project test
on: push

permissions:
contents: read
packages: read

jobs:
test-check:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
cache: pip
cache-dependency-path: pyproject.toml
- name: dependency install
run: pip install -e ".[dev]"
- name: test
run: tox

0 comments on commit 14f1fc2

Please sign in to comment.