Skip to content

CI [2/N]

CI [2/N] #12

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
working-directory: ./rust

Check failure on line 29 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: 29, Col: 9): Unexpected value 'working-directory'
with:
command: check