Skip to content

Commit ebeab4a

Browse files
committed
fix rust.yml
1 parent 2b59c10 commit ebeab4a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
~/.rustup/
2323
scraper/target
2424
key: cargo-cache-${{ github.job }}-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
25-
- uses: actions-rust-lang/setup-rust-toolchain@v1
25+
- uses: dtolnay/rust-toolchain@v1
2626
with:
27+
toolchain: 1.82.0
2728
components: clippy,rustfmt
2829
- run: cargo build
2930
- run: cargo build --release

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dev-db:
7070
-e POSTGRES_DB=database \
7171
postgres:alpine
7272
@echo "Waiting for PostgreSQL to be ready..."
73-
@sleep 5 # PostgreSQLが起動するまでの待機(必要に応じて調整)
73+
@sleep 2 # PostgreSQLが起動するまでの待機(必要に応じて調整)
7474
@until docker exec postgres pg_isready -U user -d database; do \
7575
echo "Waiting for PostgreSQL to be ready..."; \
7676
sleep 1; \

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
pkg-config
2929
openssl
3030
lefthook
31-
pkgs.
31+
pkgs.prisma
3232
] ++ [
3333
rust-pkgs
3434
];

0 commit comments

Comments
 (0)