From 6cc50d8092335f74ed75774b148435d46f8e045b Mon Sep 17 00:00:00 2001 From: Filip Pospisil Date: Wed, 31 Jan 2024 13:31:11 +0100 Subject: [PATCH] pipeline --- .github/workflows/main.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..74993c8 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,30 @@ +name: Main CI + +on: + push: + branches: [ main, pipelines ] + pull_request: + branches: [ main ] + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} + cancel-in-progress: true + +jobs: + main: + strategy: + matrix: + os: [ ubuntu-latest, macos-13, windows-latest ] + fail-fast: false + + runs-on: ${{ matrix.os }} + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Start + run: | + echo "pipeline will start"