Skip to content

Add native build

Add native build #1

Workflow file for this run

name: Docker
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Format Check
run: cargo fmt -- --check
#- name: Check
# run: cargo clippy
#- name: Test
# run: cargo test
- name: Build
run: cargo build