ci: update actions and images #16235
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: EKF Change Indicator | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
container: ghcr.io/px4/px4-dev:1.16.0-alpha2 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Git ownership workaround | |
run: git config --system --add safe.directory '*' | |
- name: main test | |
run: make tests TESTFILTER=EKF | |
- name: Check if there is a functional change | |
run: git diff --exit-code | |
working-directory: src/modules/ekf2/test/change_indication |