Skip to content

Init

Init #2

Workflow file for this run

name: Contracts CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
all:
name: All

Check failure on line 11 in .github/workflows/contracts.yml

View workflow run for this annotation

GitHub Actions / Contracts CI

Invalid workflow file

The workflow is not valid. .github/workflows/contracts.yml (Line: 11, Col: 5): Required property is missing: runs-on
steps:
- name: Format
run: |
cd contracts
cargo fmt --all --check
- name: Clippy
run: cargo clippy --all-targets -- -Dwarnings
- name: Tests
run: cargo t --all-targets -- --include-ignored