Skip to content

feat: Add a docker image. #2

feat: Add a docker image.

feat: Add a docker image. #2

Workflow file for this run

name: Rust Check
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Run cargo check
run: cargo check