Skip to content

fix(ci): build with g++-13 #2

fix(ci): build with g++-13

fix(ci): build with g++-13 #2

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Build project
env:
CXX: g++-13
run: make
- name: Run tests
run: make test
- name: Upload library as an artifact
uses: actions/upload-artifact@v3
with:
name: libmlp.a
path: build/libmlp.a