Skip to content

Commit

Permalink
1. Fix config loading bug. Add test for config loading.
Browse files Browse the repository at this point in the history
2. Add `Request::user` and `Request::user_required` methods to fetch user directly from the session, if any is set on the request.
3. Really finish refactor from Rum to Rwf rename.
  • Loading branch information
levkk committed Oct 25, 2024
1 parent 310c3fc commit 4d0502c
Show file tree
Hide file tree
Showing 16 changed files with 349 additions and 90 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@ jobs:
run: cargo build
- name: Format
run: cargo fmt --all -- --check
- name: Install cargo-nextest
run: cargo install cargo-nextest
- name: Setup PostgreSQL
run: |
sudo service postgresql start
sudo -u postgres createuser --superuser --login $USER
createdb $USER
- name: Test
run: cargo nextest run
Loading

0 comments on commit 4d0502c

Please sign in to comment.