Skip to content

fix typo in tests

fix typo in tests #10

Workflow file for this run

name: PKG
on:
push:
branches:
- master
paths-ignore:
- "*.md"
- "*.gitignore"
- "*.txt"
- "!CMakeLists.txt"
- "*.png"
- "*.mtx"
- "*.mm"
workflow_dispatch:
jobs:
packager:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
steps:
- name: Install toolchain
run: |
sudo apt update
sudo apt install gcc-13 g++-13
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
./build.sh \
-t Release \
-o "-DCMAKE_CXX_COMPILER=/usr/bin/g++-13" \
-p
- name: Upload binary artifact
uses: actions/upload-artifact@v3
with:
name: release-ubuntu
path: build/*Linux.zip
- name: Upload source artifact
uses: actions/upload-artifact@v3
with:
name: release-source
path: build/*Source.zip