/readme fix #5
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: Losh Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Repo" | |
uses: actions/checkout@v4 | |
- name: "Set up dependencies" | |
run: sudo apt install -y gcc make | |
- name: "Build" | |
run: make | |
# TODO add Hardening Build, `make harden` & clang | |
- name: "Test" | |
run: make test |