Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
os: [ubuntu-latest]
compiler: [gcc, g++, clang, gcc-12, gcc-13, gcc-14]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Compile Library
env:
CCFLAGS: "-fsanitize=undefined"
Expand All @@ -27,7 +27,7 @@ jobs:
os: [ubuntu-latest]
compiler: [gcc]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Compile Library
env:
CCFLAGS: "-fsanitize=undefined"
Expand All @@ -53,7 +53,7 @@ jobs:
os: [ubuntu-latest]
compiler: [gcc]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# The following should be moved into a seperate action for only pull requests, etc.
# where you it posts the information into the PR as a comment (optionally?)
- name: Install cppcheck
Expand All @@ -68,7 +68,7 @@ jobs:
os: [macos-latest]
compiler: [clang]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Compile Library
env:
CCFLAGS: "-fsanitize=undefined"
Expand All @@ -86,7 +86,7 @@ jobs:
os: [windows-latest]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup MinGW
uses: msys2/setup-msys2@v2
with:
Expand Down