Skip to content

downgraded gh actions to gcc 14 #39

downgraded gh actions to gcc 14

downgraded gh actions to gcc 14 #39

Workflow file for this run

name: C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install GCC 14
run: sudo apt update && sudo apt install -y g++-14
- name: Testing
run: make CC=g++-14 gh-actions