Skip to content

fix(docs): restore historical changelogs #196

fix(docs): restore historical changelogs

fix(docs): restore historical changelogs #196

Workflow file for this run

name: patternia CI
on:
push:
branches: [main, dev-main]
paths-ignore:
- "README.md"
- "CONTRIBUTING.md"
- "docs/**"
- "LICENSE"
- ".github/ISSUE_TEMPLATE/**"
pull_request:
branches: [main, dev-main]
paths-ignore:
- "README.md"
- "CONTRIBUTING.md"
- "docs/**"
- "LICENSE"
- ".github/ISSUE_TEMPLATE/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DPTN_BUILD_TESTS=ON \
-DPTN_BUILD_BENCHMARKS=OFF \
-DPTN_SKIP_COMPILER_CHECK=ON
- name: Build
run: cmake --build build --parallel
- name: Run Tests
run: ctest --test-dir build --output-on-failure
- name: Upload test log (on failure)
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-log
path: build/Testing/Temporary/LastTest.log