Bumping up GTK4 selection opacity #192
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for automatically building the styles, for testing purposes | |
name: Build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/tau-os/builder:nightly | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo dnf install --allowerasing -y meson sass nodejs | |
- name: Setup build | |
run: meson _build | |
- name: Build with Ninja | |
run: ninja | |
working-directory: ./_build |