Skip to content

Commit

Permalink
Add native build
Browse files Browse the repository at this point in the history
  • Loading branch information
Ancient123 committed Oct 8, 2024
1 parent e6c9618 commit 1cdbae7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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

0 comments on commit 1cdbae7

Please sign in to comment.