run tests on ci
Run tests / test (push) Successful in 27s
Details
Run tests / test (push) Successful in 27s
Details
Signed-off-by: Ondrej Novak <git@npost.cz>
This commit is contained in:
parent
30a1b49d23
commit
e9f1f3fc62
|
|
@ -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
|
||||||
Loading…
Reference in New Issue