Skip to content

Create ci.yml

Create ci.yml #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
cargo-check:
name: Cargo check all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo check --all-targets