Skip to content

Commit

Permalink
Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Jan 18, 2025
1 parent 6e5d233 commit b249376
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI test workflow

on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- branch-test
pull_request:
types:
- opened
- synchronize
- reopened
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: test-job
runs-on: ubuntu-latest
steps:
- name: Check event name
run: echo ${{ github.event_name }}
- name: Check ref
run: echo ${{ github.ref }}

0 comments on commit b249376

Please sign in to comment.