run tests on ci
Run tests / test (push) Successful in 36s Details

This commit is contained in:
Ondrej Novak 2026-02-21 23:25:54 +01:00
parent 30a1b49d23
commit 7a26aa8bd9
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
name: Run tests
on: [push]
jobs:
test:
runs-on: alpine
steps:
- name: install git
shell: sh
run: apk add git
- name: checkout code
uses: actions/checkout@v4
- name: install cargo
shell: sh
run: apk add cargo
- name: execute tests
shell: sh
run: cargo test