Skip to content

start-up: add runc baseline #20

start-up: add runc baseline

start-up: add runc baseline #20

Workflow file for this run

name: "Basic checks for the experiment repo"
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
defaults:
run:
shell: bash
# Cancel previous running actions for the same PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint_and_format:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v4
name: "Install apt deps"

Check failure on line 26 in .github/workflows/checks.yaml

View workflow run for this annotation

GitHub Actions / Basic checks for the experiment repo

Invalid workflow file

The workflow is not valid. .github/workflows/checks.yaml (Line: 26, Col: 9): 'name' is already defined .github/workflows/checks.yaml (Line: 27, Col: 9): Unexpected value 'run'
run: sudo apt install -y libfontconfig1
- name: "Run cargo fmt check"
run: cargo fmt --all -- --check
- name: "Run cargo clippy"
run: cargo clippy -- -D warnings