Minor changes #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
container: archlinux:latest | |
steps: | |
- name: Checkout code | |
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 | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: make | |
- name: Test | |
run: make test |