Gnome 47 #172
Workflow file for this run
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
name: Run tests | |
on: | |
pull_request: | |
paths-ignore: | |
- .github/Dockerfile # There is no reason to run if the container was updated | |
jobs: | |
test: | |
name: Tests | |
permissions: | |
packages: read | |
container: | |
image: ghcr.io/cogitri/gnome-software-plugin-apk-ci:47 | |
credentials: | |
username: cogitri | |
password: ${{ secrets.GITHUB_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: meson build && ninja -C build | |
- name: Test | |
run: dbus-run-session ./tests/test_wrapper.sh -- meson test -v -C build |