Skip to content

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#1469) #1041

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#1469)

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#1469) #1041

Workflow file for this run

name: Test Exercises
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-24.04, macos-15]
compiler: [gcc, clang]
exclude:
- os: macos-15
compiler: gcc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Determine number of available hardware threads
run: echo "NUM_THREADS=$(nproc || sysctl -n hw.ncpu)" >> $GITHUB_ENV
- name: Test Exercises
env:
CC: ${{ matrix.compiler }}
run: make -j ${{ env.NUM_THREADS }}