Merge pull request #1 from mkn/pr #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ubuntu-latest | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Build/Test" # contains slash so use quotes otherwise UB | |
run: | | |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_nix | |
chmod +x mkn | |
KLOG=3 ./mkn clean build test run -dtOa "-std=c++17 -fPIC" |