Skip to content

chore: bump rollup from 4.27.4 to 4.28.0 (#93) #186

chore: bump rollup from 4.27.4 to 4.28.0 (#93)

chore: bump rollup from 4.27.4 to 4.28.0 (#93) #186

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-action:
name: Test Action
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-14, windows-2022]
steps:
- name: Checkout Project
uses: actions/checkout@v4.2.2
with:
repository: threeal/cpp-starter
ref: v1.0.0
- name: Checkout Action
uses: actions/checkout@v4.2.2
with:
path: ctest-action
sparse-checkout: |
dist
action.yml
sparse-checkout-cone-mode: false
- name: Setup Ninja
uses: seanmiddleditch/gha-setup-ninja@v5
- name: Build Project
uses: threeal/cmake-action@v2.0.0
with:
generator: Ninja
options: BUILD_TESTING=ON
- name: Test Project
uses: ./ctest-action