diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..a8b48d8 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file