Skip to content

fixing testing harness #9

fixing testing harness

fixing testing harness #9

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
- triple: i686-unknown-linux-gnu
caps: I686_UNKNOWN_LINUX_GNU

Check failure on line 44 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@3eb7d72a2e78e8648df157b6317732946c17f2e5 (Line: 44, Col: 16): Unexpected value 'nightly'
channel:
- stable
- beta
- nightly
uses: ./.github/workflows/rust.yml
with:
target: ${{ matrix.target.triple }}
target-in-caps: ${{ matrix.target.caps }}
channel: ${{ matrix.channel }}