Skip to content

Merge pull request #3 from tdameros/gitattributes #9

Merge pull request #3 from tdameros/gitattributes

Merge pull request #3 from tdameros/gitattributes #9

Workflow file for this run

name: main
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y nasm clang-format
- name: Check format
run: make check-format
- name: Build
run: make
- name: Run tests
run: make tests