Reduced default derivative value of axis controller from 1600 to 1000… #386
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: 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/**/*.json | |
out/release/**/*.lua | |
fail_on_unmatched_files: true | |
if: startsWith(github.ref, 'refs/tags/') |