Skip to content

Commit

Permalink
testworkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Utesgui authored Apr 16, 2024
1 parent e2723b8 commit e0888d9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run CI
run-name: ${{ github.job }}
on: [push, pull_request]

jobs:
normal_ci:
runs-on: ubuntu-latest
steps:
- name: Run normal CI
run: echo "Running normal CI"

pull_request_ci:
runs-on: ubuntu-latest
# if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Run PR CI
run: echo "Running PR only CI"

0 comments on commit e0888d9

Please sign in to comment.