ci: first ci test
Some checks failed
CI / build (push) Failing after 15s

This commit is contained in:
2025-11-28 15:27:46 +01:00
parent 32705b4b35
commit fb63aa4d2a

25
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Install runtime system dependencies
run: |
sudo apt-get update
sudo apt-get install -y pristine-tar
- name: Run tests
run: cargo test --verbose