31 lines
654 B
YAML
31 lines
654 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- next
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: docker build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: false
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: cargo test
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: cargo build
|
|
|
|
- name: Run
|
|
uses: https://git.kemitix.net/kemitix/rust@next
|
|
with:
|
|
args: cargo run
|