Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
branches:
- main

permissions:
contents: read

env:
RUSTFLAGS: '-Dwarnings'

Expand Down Expand Up @@ -86,4 +89,4 @@ jobs:
run: cargo binstall -y sea-orm-cli

- name: Test
run: cargo test --locked
run: cargo test --locked --release
4 changes: 4 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Labels
on:
workflow_dispatch:

permissions:
contents: read
issues: write

jobs:
sync-labels:
name: Sync Labels
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- minor
- major

permissions:
contents: write

jobs:
release:
name: Release
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
Expand All @@ -13,6 +16,7 @@ jobs:
book-test:
name: Test Book
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5

Expand All @@ -35,6 +39,7 @@ jobs:
name: Build Book
needs: book-test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
with:
Expand Down Expand Up @@ -71,10 +76,12 @@ jobs:
needs: book-build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest

permissions:
contents: read
pages: write
id-token: write

steps:
- uses: actions/checkout@v5
with:
Expand Down