Skip to content

Add GitHub CI workflow #9

Add GitHub CI workflow

Add GitHub CI workflow #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install deps
run: sudo apt install -y meson
- name: Build new git, sigh
run: |
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.45.0.tar.xz
tar -xJ git-2.45.0
cd git-2.45.0
make -j$(nproc)
sudo make install
- name: Configure
run: meson setup build
- name: Test
run: meson test -C build --print-errorlogs