Skip to content

init: Project initialized #1

init: Project initialized

init: Project initialized #1

Workflow file for this run

name: "Build Rust code 🦀"
on: [push]
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