Add prepend and append modes for all our normal build scriptlets #210
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: Linux CI | |
on: [push, pull_request] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Fedora testing environment | |
run: sudo ./mktree.docker build | |
working-directory: ./tests | |
- name: Run the test suite | |
run: sudo ./mktree.docker check --interactive=false -j$(nproc) | |
working-directory: ./tests |