gh: Add workflow to test for compilation failures

This commit is contained in:
mintsuki 2021-09-29 17:41:12 +02:00
parent 321eae8fbd
commit 5e8cd503ce
2 changed files with 16 additions and 1 deletions

15
.github/workflows/check.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Check for compilation failures
on: [push, pull_request]
jobs:
build:
name: Check for compilation failures
runs-on: ubuntu-20.04
steps:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install git build-essential nasm curl mtools -y
- name: Build the bootloader
run: make all

View File

@ -1,4 +1,4 @@
name: Limine
name: Release
on:
push: