24 lines
451 B
YAML
24 lines
451 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- next
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: test
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: build
|
|
|
|
- name: Run
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: run
|