Bump actions/checkout from 4.1.6 to 4.1.7 #126
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
permissions: | |
contents: read | |
jobs: | |
ubuntu-ninja-clang: | |
name: Ubuntu (ninja, clang) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Prepare | |
run: | | |
sudo apt update | |
sudo apt install ninja-build | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build and run tests | |
env: | |
CC: clang | |
CXX: clang++ | |
run: | | |
scripts/test.sh | |
ubuntu-make-gcc: | |
name: Ubuntu (make, gcc) | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build and run tests | |
env: | |
CC: gcc | |
CXX: g++ | |
run: | | |
scripts/initbuild.sh make | |
scripts/test.sh | |
macos: | |
name: macOS | |
runs-on: macos-14 | |
steps: | |
- name: Prepare | |
run: | | |
brew install ninja | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build and run tests | |
run: | | |
scripts/test.sh | |
windows: | |
name: Windows | |
runs-on: windows-2022 | |
steps: | |
- uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build and run tests | |
run: | | |
cmake . | |
msbuild FlatCC.sln /m /property:Configuration=Release | |
ctest -VV |