Skip to content

Adjust comments

Adjust comments #11

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- uses: actions/checkout@v4
- name: Update system and Install dependencies
run: |
pacman -Syu --noconfirm
pacman -S --noconfirm base-devel vim
- name: Build
run: make
- name: Test
run: make test