Files
chronos/.gitea/workflows/ci.yaml
LordBaryhobal 91ff0efb06
All checks were successful
CI / tests (push) Successful in 3m5s
changed CI upload artifact action
2025-07-14 22:53:03 +02:00

33 lines
726 B
YAML

name: CI
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
tests:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:rust-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install tytanic
uses: taiki-e/cache-cargo-install-action@v2
with:
tool: tytanic@0.2.2
- name: Run test suite
run: tt run
- name: Archive artifacts
uses: https://gitea.com/actions/gitea-upload-artifact@v4
if: always()
with:
name: artifacts
path: |
tests/**/diff/*.png
tests/**/out/*.png
tests/**/ref/*.png
retention-days: 5