Skip to content

Fix doc comment with too many arguemnts #56

Fix doc comment with too many arguemnts

Fix doc comment with too many arguemnts #56

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install -y build-essential make nasm
- name: Build
run: make
- name: Clean and debug
run: make clean && make debug
- name: Clean and test
run: make clean && make test