.gitea/workflows: init test pipeline
Some checks failed
Run tests / run-tests (push) Failing after 39s
Some checks failed
Run tests / run-tests (push) Failing after 39s
This commit is contained in:
28
.gitea/workflows/test.yaml
Normal file
28
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
name: Run tests
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
run-tests:
|
||||||
|
runs-on: debian-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Install uv
|
||||||
|
uses: astral-sh/setup-uv@v7
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: uv sync --lock
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: uv run pytest --cov=dibbler --cov-report=html
|
||||||
|
|
||||||
|
- name: Upload coverage report
|
||||||
|
uses: https://git.pvv.ntnu.no/Projects/rsync-action@v1
|
||||||
|
with:
|
||||||
|
source: ./htmlcov/
|
||||||
|
target: ${{ gitea.ref_name }}/coverage/
|
||||||
|
username: gitea-web
|
||||||
|
ssh-key: ${{ secrets.WEB_SYNC_SSH_KEY }}
|
||||||
|
host: pages.pvv.ntnu.no
|
||||||
|
known-hosts: "pages.pvv.ntnu.no ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH2QjfFB+city1SYqltkVqWACfo1j37k+oQQfj13mtgg"
|
||||||
Reference in New Issue
Block a user