Enable roll controll at all times. #262
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: Tests | |
on: [push, pull_request] | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.REPO_TOKEN }} | |
- name: Install tools | |
run: | | |
set -e -o pipefail | |
./external/du-libs/external/du-unit-testing/install_tools.sh | |
./install_tools.sh | |
- name: Run CI Tests | |
run: | | |
make release-ci | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
out/release/** | |
fail_on_unmatched_files: true | |
if: startsWith(github.ref, 'refs/tags/') |