19 lines
349 B
YAML
19 lines
349 B
YAML
|
|
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
|