Skip to content

fixing testing harness #3

fixing testing harness

fixing testing harness #3

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
channel:
- stable
- beta
- nightly
uses: ./.github/workflows/rust.yml

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

View workflow run for this annotation

GitHub Actions / common

Invalid workflow file

The workflow is not valid. In .github/workflows/common.yml (Line: 49, Col: 11): Error from called workflow sayantn/aes/.github/workflows/rust.yml@45e686d5cec0b8679e8dc913189ed8ce72ad8062 (Line: 34, Col: 23): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found. In .github/workflows/common.yml (Line: 49, Col: 11): Error from called workflow sayantn/aes/.github/workflows/rust.yml@45e686d5cec0b8679e8dc913189ed8ce72ad8062 (Line: 43, Col: 23): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
with:
target: ${{ matrix.target.triple }}
target-in-caps: ${{ matrix.target.caps }}
channel: ${{ matrix.channel }}