Skip to content

Commit eae8aee

Browse files
committed
fix: ci
1 parent 2340558 commit eae8aee

File tree

2 files changed

+8
-89
lines changed

2 files changed

+8
-89
lines changed

.github/actions/setup-monorepo/action.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/pull_request.yml

Lines changed: 8 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: Pull Request
33
on:
44
workflow_dispatch:
55
pull_request:
6-
# paths: # Only run when changes are made to rust code or root Cargo
7-
# - "crates/**"
8-
# - "fuzz/**"
9-
# - "xtask/**"
10-
# - "Cargo.toml"
11-
# - "Cargo.lock"
12-
# - "rust-toolchain.toml"
13-
# - "rustfmt.toml"
6+
paths: # Only run when changes are made to rust code or root Cargo
7+
- "crates/**"
8+
- "fuzz/**"
9+
- "xtask/**"
10+
- "Cargo.toml"
11+
- "Cargo.lock"
12+
- "rust-toolchain.toml"
13+
- "rustfmt.toml"
1414

1515
concurrency:
1616
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
@@ -180,63 +180,3 @@ jobs:
180180
git diff
181181
exit 1
182182
fi
183-
184-
# ci:
185-
# name: CI
186-
# timeout-minutes: 10
187-
# runs-on: ubuntu-latest
188-
#
189-
# services:
190-
# postgres:
191-
# image: postgres:latest
192-
# env:
193-
# POSTGRES_USER: postgres
194-
# POSTGRES_PASSWORD: postgres
195-
# POSTGRES_DB: postgres
196-
# ports:
197-
# - 5432:5432
198-
#
199-
# env:
200-
# DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
201-
#
202-
# steps:
203-
# - name: 🏗 Setup repository
204-
# uses: actions/checkout@v4
205-
# with:
206-
# submodules: true
207-
#
208-
# - name: Free Disk Space
209-
# uses: ./.github/actions/free-disk-space
210-
#
211-
# - name: Install toolchain
212-
# uses: moonrepo/setup-rust@e013866c4215f77c925f42f60257dec7dd18836e # v1.2.1
213-
# with:
214-
# components: rustfmt
215-
# bins: taplo-cli
216-
# cache-base: main
217-
# env:
218-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
219-
# - name: Run format
220-
# run: |
221-
# cargo fmt --all --check
222-
# taplo format --check
223-
#
224-
# - name: 🏗 Setup monorepo
225-
# uses: ./.github/actions/setup-monorepo
226-
# with:
227-
# github-token: ${{ secrets.GITHUB_TOKEN }}
228-
#
229-
# - name: Run test migrations
230-
# run: psql -f test-db/seed.sql postgresql://postgres:postgres@localhost:5432/postgres
231-
#
232-
# - name: 📦 Build
233-
# id: build
234-
# run: RUSTFLAGS="-A dead_code" cargo build
235-
#
236-
# - name: ⚡️ Check
237-
# id: check
238-
# run: RUSTFLAGS="-A dead_code" cargo check
239-
#
240-
# - name: 🦺 Test
241-
# id: test
242-
# run: RUSTFLAGS="-A dead_code" cargo test

0 commit comments

Comments
 (0)