Skip to content

Lots of CI adjustments #3

Lots of CI adjustments

Lots of CI adjustments #3

Workflow file for this run

name: Build
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