Skip to content

Commit

Permalink
pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
pospisilf committed Jan 31, 2024
1 parent eb6b133 commit 6cc50d8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 6cc50d8

Please sign in to comment.