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
3 changes: 3 additions & 0 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Running code coverage

on: [push]

permissions:
contents: read

jobs:
setup:
name: Setup environment
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

permissions:
contents: read

jobs:
setup:
name: Setup environment
Expand All @@ -19,6 +22,8 @@ jobs:
name: Run documentation
runs-on: ubuntu-latest
needs: setup # Need to wait for setup
permissions:
contents: write
steps:
- uses: actions/checkout@v1 # Get last commit pushed

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/format-check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches-ignore:
- "main"

permissions:
contents: read

jobs:
setup:
name: Setup environment
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches-ignore:
- "main"

permissions:
contents: read

jobs:
setup:
name: Setup environment
Expand Down
Loading