mirror of
https://github.com/Steffo99/emblematic.git
synced 2024-11-22 14:54:18 +00:00
25 lines
520 B
YAML
25 lines
520 B
YAML
|
name: "Test suite"
|
||
|
|
||
|
on:
|
||
|
# Modification of a project file in the main branch
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "emblematic/**"
|
||
|
- "pyproject.toml"
|
||
|
- "poetry.lock"
|
||
|
# Pull request to the main branch modifying a project file
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "emblematic/**"
|
||
|
- "pyproject.toml"
|
||
|
- "poetry.lock"
|
||
|
# Triggered by a new release
|
||
|
workflow_call:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
uses: Steffo99/.github/.github/workflows/test-poetry-compileall.yml@main
|