Skip to content

Set font color to white when bar is red #20

Set font color to white when bar is red

Set font color to white when bar is red #20

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
build_type: [ Release, Debug ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install GTK3
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} --target another-day