Skip to content

Commit

Permalink
modified github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonymakarewicz committed Sep 5, 2024
1 parent 5397655 commit 80ff741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr_ci.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Pull Request CI

on: # On what action this workflow will be triggered
on:
pull_request:
branches:
- main
- dev

jobs:
build:
name: Build & Run All Tests # Give the build job an appropriate name
name: Build & Run All Tests
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4 # to use node20 instead of node12 and node 16 which are deprecated
uses: actions/checkout@v4

- name: Cache CMake files
uses: actions/cache@v3
Expand All @@ -27,7 +27,7 @@ jobs:
${{ runner.os }}-cmake-build-
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2 # Use the latest major version for stability
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.26.3'

Expand Down

0 comments on commit 80ff741

Please sign in to comment.