diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml new file mode 100644 index 00000000..c9d451a8 --- /dev/null +++ b/.github/workflows/static_checks.yml @@ -0,0 +1,13 @@ +name: 📊 Static Checks +on: push + +jobs: + format: + name: File formatting (mirror-godot-app/.workflows/scripts/file_format.sh) + runs-on: "ubuntu-latest" + steps: + - uses: actions/checkout@v3 + - name: File formatting checks (file_format.sh) + run: | + cd ./mirror-godot-app/ + bash .github/scripts/file_format.sh diff --git a/mirror-godot-app/.github/workflows/static_checks.yml b/mirror-godot-app/.github/workflows/static_checks.yml deleted file mode 100644 index bd5a0390..00000000 --- a/mirror-godot-app/.github/workflows/static_checks.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: 📊 Static Checks -on: push - -jobs: - format: - name: File formatting (file_format.sh) - runs-on: ["self-hosted", "Linux"] - steps: - - uses: actions/checkout@v3 - - name: File formatting checks (file_format.sh) - run: | - bash ./.github/scripts/file_format.sh