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

on: [push, pull_request]

permissions:
contents: read

jobs:
build:

Expand All @@ -18,6 +21,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install missing software on ubuntu
if: matrix.os == 'ubuntu-24.04'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ name: CI-windows

on: [push,pull_request]

permissions:
contents: read

defaults:
run:
shell: cmd
Expand All @@ -23,6 +26,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup msbuild.exe
uses: microsoft/setup-msbuild@v2
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ name: clang-tidy

on: [push, pull_request]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install missing software
run: |
Expand Down
Loading