Skip to content

Commit

Permalink
Merge pull request #2 from WIPACrepo/hello-axum
Browse files Browse the repository at this point in the history
Migrate to Axum, add MongoDB backend
  • Loading branch information
blinkdog authored Oct 22, 2024
2 parents b6935ba + 6246546 commit e463ebe
Show file tree
Hide file tree
Showing 35 changed files with 5,743 additions and 548 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- run: cargo fmt --check
- run: cargo outdated --root-deps-only --exit-code 1
- run: cargo fmt --all -- --check
- run: cargo generate-lockfile --locked
- run: cargo check --locked
- run: cargo clippy --locked
- run: cargo verify-project --locked

test:
name: Test
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@

# Added by cargo
/target

# don't check in our precious secrets
keycloak-client-secret

# don't check in Python virtual environments
env
Loading

0 comments on commit e463ebe

Please sign in to comment.