mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-02-06 10:45:45 +08:00
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
956 B
YAML
37 lines
956 B
YAML
name: test scripts
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
concurrency:
|
|
group: ci-${{github.workflow}}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
container: ardupilot/ardupilot-dev-base:v0.1.3
|
|
strategy:
|
|
fail-fast: false # don't cancel if a job from the matrix fails
|
|
matrix:
|
|
config: [
|
|
check_autotest_options,
|
|
param_parse,
|
|
python-cleanliness,
|
|
astyle-cleanliness,
|
|
validate_board_list,
|
|
logger_metadata,
|
|
param-file-validation,
|
|
]
|
|
steps:
|
|
# git checkout the PR
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
submodules: 'recursive'
|
|
- name: test ${{matrix.config}}
|
|
env:
|
|
CI_BUILD_TARGET: ${{matrix.config}}
|
|
shell: bash
|
|
run: |
|
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
|
Tools/scripts/build_ci.sh
|