Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 in /compiler/java #883
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
# C++ CI workflow | |
name: C++ CI | |
on: | |
push: | |
paths: | |
- compiler/cpp/** | |
pull_request: | |
branches: [ main, release/**, feature/** ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare environment | |
run: | | |
shopt -s extglob | |
rm -rf !("compiler") | |
cp -fR ./compiler/cpp/* . | |
rm -rf ./compiler | |
- name: Download Libs | |
run: | | |
mkdir -p ./lib/json | |
cd lib | |
git clone --depth 1 --branch v1.14.0 https://github.com/google/googletest.git | |
curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp" --output json/json.hpp | |
- name: Build project | |
uses: nicledomaS/[email protected] | |
with: | |
submodule_update: ON | |
run_tests: ON | |
cmake_args: -DWITH_TESTS=ON | |
unit_test_build: -Dtest=ON |