Skip to content
Closed
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:5d143123fdf80462d1778cd4f24b9f7ca13c87174bca19141fb194c5a1ebca59
image: postgres:18@sha256:f7ce845ee6873dd84be93c9828fe0d1fab0f9707dc9ac569694657398b290bce
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:5d143123fdf80462d1778cd4f24b9f7ca13c87174bca19141fb194c5a1ebca59 # postgres 16.13
image: postgres:18@sha256:f7ce845ee6873dd84be93c9828fe0d1fab0f9707dc9ac569694657398b290bce # 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