mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 19:14:20 +00:00
43 lines
834 B
YAML
43 lines
834 B
YAML
name: "Test suite"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- master
|
|
workflow_call:
|
|
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
pytest:
|
|
name: "🧪 Test package using pytest"
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "⬇️ Checkout repository"
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "🔨 Setup Python"
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: "🔨 Setup Poetry"
|
|
uses: abatilo/actions-poetry@v2.1.6
|
|
|
|
- name: "🔨 Setup Poetry Python environment"
|
|
id: pyenv
|
|
uses: Steffo99/actions-poetry-deps@v0.2.4
|
|
|
|
- name: "🧪 Run check"
|
|
run: |
|
|
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
|
python -m compileall royalnet
|