Remove some double-added lines in foxsimile
source files from last merge
#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: build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: [ubuntu-latest, macos] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "run CMake" | |
run: cmake -S . build | |
- name: "build project" | |
run: cmake --build build --target all -j4 |