-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pierre.delaunay
committed
Jul 3, 2024
1 parent
f2cc75f
commit 254a9f2
Showing
6 changed files
with
46 additions
and
6 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: tests | ||
name: run | ||
|
||
on: | ||
# Runs every sunday | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: unit | ||
|
||
on: | ||
push: | ||
|
||
# Runs for pull requests | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
# Runs on publish | ||
release: | ||
types: | ||
[published] | ||
|
||
# Allow manual triggers | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
tests: | ||
# Cancel previous jobs if a new version was pushed | ||
concurrency: | ||
group: "${{ github.ref }}-${{ matrix.arch }}" | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: dependencies | ||
run: | | ||
poetry install --with dev | ||
- name: tests | ||
run: | | ||
pytest --ignore=tests/integration tests/ |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""This file is generated, do not modify""" | ||
|
||
__tag__ = "v0.1.0-15-gd669febd" | ||
__commit__ = "d669febd9ed580f0c09e3e7b50e81ead50462aa5" | ||
__date__ = "2024-07-02 11:51:22 -0400" | ||
__tag__ = "v0.1.0-20-gf2cc75f8" | ||
__commit__ = "f2cc75f8a4728dcac223c91153119b43fec05698" | ||
__date__ = "2024-07-03 12:37:48 -0400" |
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