Skip to content

Commit

Permalink
ready, set, go!
Browse files Browse the repository at this point in the history
  • Loading branch information
Sir-Photch committed Dec 19, 2023
0 parents commit ce1b564
Show file tree
Hide file tree
Showing 11 changed files with 1,727 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Fmt
run: cargo fmt --check
- name: Clippy
run: cargo clippy -- --deny warnings
- name: Build
run: cargo build --verbose
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/test
/target
/.vscode
/report.html
/report.json
Loading

0 comments on commit ce1b564

Please sign in to comment.