Skip to content

ci: auto ci build testing #1

ci: auto ci build testing

ci: auto ci build testing #1

Workflow file for this run

name: "Build Rust code πŸ¦€"
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Install Rust"
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check