mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
3404f79925
1 changed files with 24 additions and 0 deletions
24
.github/workflows/test-package.yml
vendored
Normal file
24
.github/workflows/test-package.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: Test package
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout the repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Python 3.9
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.9'
|
||||||
|
- name: Install Poetry
|
||||||
|
uses: abatilo/actions-poetry@v2.0.0
|
||||||
|
- name: Install development dependencies
|
||||||
|
run: poetry install
|
||||||
|
- name: Run pytest
|
||||||
|
run: poetry run pytest
|
Loading…
Reference in a new issue