You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: CI
-
- on:
- push:
- pull_request:
- workflow_dispatch:
-
- jobs:
- test:
- name: "Test"
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: "Check"
- run: cargo check
- - name: "Build"
- run: cargo build
- - name: "Test"
- run: cargo test
-
- clippy:
- name: "Clippy"
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: "Clippy"
- run: cargo clippy
-
- rustfmt:
- name: "Formatting"
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: "rustfmt"
- run: cargo fmt -- --check
|