Skip to content

.github: add an 'apt update' step to CI #57

.github: add an 'apt update' step to CI

.github: add an 'apt update' step to CI #57

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Build Dependencies
run: |
apt update
sudo apt-get install cmake gettext libgtk-3-dev libappindicator3-dev libxi-dev
- name: Build
run: |
mkdir build
cd build
cmake .. && make