Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: ${{ github.repository_owner == 'ShuttlePub' && !contains(github.event.head_commit.message, '[CI-SKIP]') }}
services:
postgres:
image: postgres:16@sha256:287eced1f33b59ed265ed13a60d3680dd7646d70c4dc0e785f59a470ebc03eeb
image: postgres:16@sha256:33f923b05f64ca54ac4401c01126a6b92afe839a0aa0a52bc5aeb5cc958e5f20
env:
POSTGRES_DB: postgres_test
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
needs: [read-toolchain]
services:
postgres:
image: postgres:16@sha256:287eced1f33b59ed265ed13a60d3680dd7646d70c4dc0e785f59a470ebc03eeb # postgres 16.13
image: postgres:16@sha256:33f923b05f64ca54ac4401c01126a6b92afe839a0aa0a52bc5aeb5cc958e5f20 # postgres 16.13
env:
POSTGRES_DB: postgres_test
POSTGRES_USER: postgres
Expand All @@ -53,12 +53,12 @@
with:
shared-key: ${{ inputs.workspace }}
- name: Format check
run: cargo fmt --verbose -p $WORKSPACE -- --check

Check warning on line 56 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐢 shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:56:9: shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck]
- name: Clippy
run: cargo clippy --verbose -p "$WORKSPACE" --all-targets -- -D warnings
- name: Build
run: cargo build --verbose -p $WORKSPACE

Check warning on line 60 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐢 shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:60:9: shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck]
- name: Test
run: cargo test --verbose -p $WORKSPACE

Check warning on line 62 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐢 shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:62:9: shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck]
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres_test
Loading