mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
15 lines
451 B
YAML
15 lines
451 B
YAML
name: docker-dev
|
|
on: [push, pull_request]
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: file_changes
|
|
uses: trilom/file-changes-action@v1.2.3
|
|
- name: test
|
|
run: |
|
|
echo '${{ steps.file_changes.outputs.files}}'
|
|
echo '${{ steps.file_changes.outputs.files_modified}}'
|
|
echo '${{ steps.file_changes.outputs.files_added}}'
|
|
echo '${{ steps.file_changes.outputs.files_removed}}'
|