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