Skip to content

chore(ci): update upload-artifact action #3

chore(ci): update upload-artifact action

chore(ci): update upload-artifact action #3

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@v4
with:
name: libmlp.a
path: build/libmlp.a