GD-616: fix file type check on filesystem context menu checks (#619) #224
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: ci-dev | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.yml' | |
- '**.jpg' | |
- '**.png' | |
- '**.md' | |
workflow_dispatch: | |
concurrency: | |
group: ci-dev-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
max-parallel: 10 | |
matrix: | |
godot-version: ['4.2', '4.2.1', '4.2.2', '4.3'] | |
godot-status: ['stable'] | |
godot-net: ['.Net', ''] | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
pull-requests: write | |
statuses: write | |
name: CI GdUnit4 - Godot_${{ matrix.godot-version }}-${{ matrix.godot-status }}${{ matrix.godot-net }} | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- shell: bash | |
run: | | |
# enable selftest on gdUnit4-action | |
echo "GDUNIT_SELFTEST=true" >> "$GITHUB_ENV" | |
- name: 'Test GdUnit4 (master) - Godot_${{ matrix.godot-version }}-${{ matrix.godot-status }}' | |
if: ${{ matrix.godot-net == '' }} | |
uses: MikeSchulze/gdUnit4-action@v1.1.1 | |
with: | |
godot-version: ${{ matrix.godot-version }} | |
godot-status: ${{ matrix.godot-status }} | |
version: master | |
paths: | | |
res://addons/gdUnit4/test/ | |
timeout: 10 | |
report-name: report_gdUnit4_Godot${{ matrix.godot-version }}-${{ matrix.godot-status }}.xml | |
- name: 'Test GdUnit4 (master) - Godot_${{ matrix.godot-version }}-${{ matrix.godot-status }}-net' | |
if: ${{ matrix.godot-net == '.Net' }} | |
uses: MikeSchulze/gdUnit4-action@v1.1.1 | |
with: | |
godot-version: ${{ matrix.godot-version }} | |
godot-status: ${{ matrix.godot-status }} | |
godot-net: true | |
version: master | |
paths: | | |
res://addons/gdUnit4/test/mono | |
timeout: 5 | |
retries: 3 # We have set the number of repetitions to 3 because Godot mono randomly crashes during C# tests | |
report-name: report_gdUnit4_Godot${{ matrix.godot-version }}-${{ matrix.godot-status }}-net.xml |