Skip to content

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
check:
name: Check
defaults:
run:
working-directory: ./rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: plop
shell: bash
run: |
echo $PWD
ls
- uses: actions-rs/cargo@v1
with:
command: check
working-directory: ./rust

Check failure on line 31 in .github/workflows/rust-ci.yml

View workflow run for this annotation

GitHub Actions / Continuous integration

Invalid workflow file

The workflow is not valid. .github/workflows/rust-ci.yml (Line: 31, Col: 9): Unexpected value 'working-directory'