Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

---
name: Merge on Main
on:
push:
branches:
- main
jobs:
build:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run cargo build
run: cargo build