Skip to content

Commit

Permalink
ci: add compilation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloose committed Dec 11, 2023
1 parent 08aa474 commit 33c6bb5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Compile for Linux

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
sudo apt install build-essential libgtk-3-dev libjansson-dev imagemagick xxd fonts-dejavu
- name: Compile
run: |
make
# We don't upload the artifact since it wouldn't work without appropriate
# libraries and installation.

0 comments on commit 33c6bb5

Please sign in to comment.