Skip to content

Override XDG_DATA_HOME and XDG_CONFIG_HOME of the testing bubblejail #26

Override XDG_DATA_HOME and XDG_CONFIG_HOME of the testing bubblejail

Override XDG_DATA_HOME and XDG_CONFIG_HOME of the testing bubblejail #26

Workflow file for this run

# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2024 igo95862
---
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
linters:
name: Run source code linters
runs-on: ubuntu-latest
container:
image: docker.io/archlinux:latest
steps:
- name: Install linters and Python dependencies
run: |
pacman --noconfirm -Syu \
git \
python-pyflakes reuse \
mypy python-pyqt6 python-tomli-w
- name: Checkout
uses: actions/checkout@v4
- name: Add safe git directory
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Run linters
run: |
python3 tools/run_linters.py
build:
name: Build
runs-on: ubuntu-latest
container:
image: docker.io/archlinux:latest
steps:
- name: Install build dependencies
run: |
pacman --noconfirm -Syu \
git python python-jinja scdoc meson
- name: Checkout
uses: actions/checkout@v4
- name: Run meson
run: |
arch-meson -Dman=true build
meson compile --verbose -C build
meson install -C build --destdir install