test: use correct matrix syntax
This commit is contained in:
parent
d9532aa17a
commit
b352ee0e67
2 changed files with 10 additions and 4 deletions
|
@ -5,20 +5,26 @@ on:
|
|||
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@next
|
||||
with:
|
||||
args: cargo test
|
||||
args: ${{ matrix.toolchain.name }} cargo test
|
||||
|
||||
- name: Build
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: cargo build
|
||||
args: ${{ matrix.toolchain.name }} cargo build
|
||||
|
||||
- name: Run
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: cargo run
|
||||
args: ${{ matrix.toolchain.name }} cargo run
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM docker.io/rust:1.81.0-slim-bookworm
|
|||
# git - git
|
||||
RUN apt-get update \
|
||||
&& \
|
||||
apt-get satisfy -y "nodejs (>=18.19.0) curl (>=7.88.1) pkg-config (>=1.8.1) libssl-dev (>=3.0.14) git (>=2.39.2)" \
|
||||
apt-get satisfy -y "nodejs (>=18.19.0), curl (>=7.88.1), pkg-config (>=1.8.1), libssl-dev (>=3.0.14), git (>=2.39.2)" \
|
||||
&& \
|
||||
rm -r /var/lib/apt/lists/*
|
||||
|
||||
|
|
Loading…
Reference in a new issue