keep-it-secret/.gitea/workflows/checks.yaml

26 lines
503 B
YAML
Raw Normal View History

2024-05-31 07:11:14 +00:00
name: "Checks"
2024-05-31 07:06:19 +00:00
2024-05-29 19:43:59 +00:00
on:
2024-05-31 07:11:14 +00:00
workflow_call:
2024-05-29 19:43:59 +00:00
jobs:
run-checks:
name: "Run checks"
runs-on: "ubuntu-latest"
steps:
2024-05-31 07:06:19 +00:00
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
2024-05-29 19:43:59 +00:00
with:
python-version: "3.10"
2024-05-31 07:06:19 +00:00
- uses: "Gr1N/setup-poetry@v8"
2024-05-29 19:43:59 +00:00
with:
poetry-version: "1.7.1"
- name: "Install deps"
run: |
set -x
poetry install
- name: "Run CI task"
run: |
set -x
poetry run inv ci