Skip to content

fixing testing harness #4

fixing testing harness

fixing testing harness #4

Workflow file for this run

name: common
on:
push:
branches:
- master
jobs:
style:
name: Check Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
profile: minimal
override: true
- name: Rustfmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check
test:
strategy:
fail-fast: false
matrix:
target:
- triple: x86_64-unknown-linux-gnu
caps: X86_64_UNKNOWN_LINUX_GNU
- triple: aarch64-unknown-linux-gnu
caps: AARCH64_UNKNOWN_LINUX_GNU
- triple: riscv64gc-unknown-linux-gnu
caps: RISCV64GC_UNKNOWN_LINUX_GNU
- triple: riscv32i-unknown-none-elf
caps: RISCV64GC_UNKNOWN_NONE_ELF

Check failure on line 42 in .github/workflows/common.yml

View workflow run for this annotation

GitHub Actions / common

Invalid workflow file

The workflow is not valid. sayantn/aes/.github/workflows/rust.yml@48f73b7dbbfab362230199b2fd30051245fee73a (Line: 42, Col: 16): Unexpected value 'nightly'
- triple: i686-unknown-linux-gnu
caps: I686_UNKNOWN_LINUX_GNU
channel:
- stable
- beta
- nightly
uses: ./.github/workflows/rust.yml
with:
target: ${{ matrix.target.triple }}
target-in-caps: ${{ matrix.target.caps }}
channel: ${{ matrix.channel }}