Skip to content

Commit

Permalink
Adds initial static server (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
reederc42 authored Mar 8, 2024
1 parent e985ba0 commit 96afce2
Show file tree
Hide file tree
Showing 9 changed files with 1,401 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust CI

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

env:
RUSTFLAGS: "-Dwarnings"

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Lint
run: cargo clippy --all-targets --all-features

- name: Test
run: cargo test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 96afce2

Please sign in to comment.