21 lines
429 B
YAML
21 lines
429 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
|
|
with:
|
|
args: test
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
|
|
with:
|
|
args: build
|
|
|
|
- name: Run
|
|
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
|
|
with:
|
|
args: run
|