Skip to content

Update CI configuration #4

Update CI configuration

Update CI configuration #4

Workflow file for this run

name: C/C++ CI
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