From fd49ef60476b568827a067b45658eef7cb59459c Mon Sep 17 00:00:00 2001 From: "Oleg V. Kozlyuk" Date: Fri, 10 Jan 2025 11:53:25 +0100 Subject: [PATCH] Adding linux-exclusive workflow (#546) --- .github/workflows/on-push-linux.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/on-push-linux.yml diff --git a/.github/workflows/on-push-linux.yml b/.github/workflows/on-push-linux.yml new file mode 100644 index 000000000..ca4e74538 --- /dev/null +++ b/.github/workflows/on-push-linux.yml @@ -0,0 +1,20 @@ +name: On Push (Linux) + +on: + push: + branches: + - linux + paths-ignore: [ 'Doc/**', 'Flights/**', 'Html/**', 'Images/**', 'Localdoc/**', 'Scenarios/**', 'Textures/**', 'Textures2/**'] + pull_request: + branches: + - linux + paths-ignore: [ 'Doc/**', 'Flights/**', 'Html/**', 'Images/**', 'Localdoc/**', 'Scenarios/**', 'Textures/**', 'Textures2/**'] + workflow_dispatch: + +jobs: + build: + name: Push + runs-on: ubuntu-latest + steps: # Dummy workflow to later be replaced with actual + - name: Checkout + uses: actions/checkout@v4