rust/.forgejo/workflows/test.yml

31 lines
655 B
YAML
Raw Normal View History

on:
push:
branches:
- next
2024-05-16 18:52:20 +01:00
jobs:
test:
runs-on: docker
strategy:
matrix:
toolchain:
- stable
- nightly
2024-05-16 18:52:20 +01:00
steps:
2024-05-16 19:53:35 +01:00
- uses: actions/checkout@v4
- name: Test ${{ toolchain}}
uses: https://git.kemitix.net/kemitix/rust@next
2024-05-16 18:52:20 +01:00
with:
args: ${{toolchain}} cargo test
2024-05-16 19:54:56 +01:00
- name: Build ${{ toolchain }}
uses: https://git.kemitix.net/kemitix/rust@next
2024-05-16 19:47:20 +01:00
with:
args: ${{ toolchain }} cargo build
2024-05-16 19:54:56 +01:00
- name: Run ${{ toolchain }}
uses: https://git.kemitix.net/kemitix/rust@next
2024-05-16 19:54:56 +01:00
with:
args: ${{ toolchain }} cargo run