Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rustworthy committed Aug 24, 2024
1 parent e46baa6 commit cee2a4f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ jobs:
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
strategy:
matrix:
# That of `indexmap` that `sqlx-core` depends on:
msrv: ["1.63.0"]
# That of `mio` that `tokio` depends on:
msrv: ["1.70.0"]
name: ubuntu / ${{ matrix.msrv }}
steps:
- uses: actions/checkout@v4
Expand Down
29 changes: 15 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,20 +119,21 @@ jobs:
# run cargo test on mac and windows
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / stable
postgres:
image: postgres:16.4
env:
POSTGRES_USER: username
POSTGRES_PASSWORD: password
POSTGRES_HOST: "127.0.0.1"
POSTGRES_DB: "pgboss"
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 127.0.0.1:5444:5432
services:
postgres:
image: postgres:16.4
env:
POSTGRES_USER: username
POSTGRES_PASSWORD: password
POSTGRES_HOST: "127.0.0.1"
POSTGRES_DB: "pgboss"
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 127.0.0.1:5444:5432
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit cee2a4f

Please sign in to comment.