Skip to content

Commit

Permalink
Initializes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Jul 20, 2024
1 parent 3a80eeb commit 4a05634
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Development Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Check code styles
run: cargo fmt --check
- name: Lint obfw
run: cargo clippy --package obfw --all-features -- -D warnings

0 comments on commit 4a05634

Please sign in to comment.