Skip to content

Merge pull request #13 from tdameros/atoi-base #25

Merge pull request #13 from tdameros/atoi-base

Merge pull request #13 from tdameros/atoi-base #25

Workflow file for this run

name: main
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
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 valgrind
- name: Check format
run: make check-format
- name: Build
run: make
- name: Run tests
run: make tests