Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
name: Continuous Integration

# runs on
# * pushes and pull requests on the "main" (pull request only for specific paths)
# * manual trigger

on:
push:
branches:
- main
branches: [ "main", "feature/*" ]

pull_request:
branches: [ "main", "feature/*" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down
Loading