rust/.forgejo/workflows/test.yml
Paul Campbell c080c3a0b0
Some checks failed
/ test (map[name:stable]) (push) Failing after 2s
/ test (map[name:nightly]) (push) Failing after 2s
test: use correct matrix syntax
2024-09-17 08:07:49 +01:00

30 lines
673 B
YAML

on:
push:
branches:
- next
jobs:
test:
runs-on: docker
strategy:
matrix:
toolchain:
- name: stable
- name: nightly
steps:
- uses: actions/checkout@v4
- name: Test
uses: https://git.kemitix.net/kemitix/rust@ceac8a8fc5
with:
args: ${{ matrix.toolchain.name }} cargo test
- name: Build
uses: https://git.kemitix.net/kemitix/rust@ceac8a8fc5
with:
args: ${{ matrix.toolchain.name }} cargo build
- name: Run
uses: https://git.kemitix.net/kemitix/rust@ceac8a8fc5
with:
args: ${{ matrix.toolchain.name }} cargo run