Files
Chris Daßler 5f3d5590ee
All checks were successful
Test / Build (push) Successful in 41s
Test / Test (push) Successful in 4s
Move test action to default workflow folder
2025-01-07 20:11:41 +01:00

27 lines
797 B
YAML

name: Test
on:
push:
pull_request:
issue_comment:
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run build' || github.event.comment.body == '!actions run all' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run
run: |
echo Tada!
test:
name: Test
runs-on: ubuntu-latest
if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run test' || github.event.comment.body == '!actions run all' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run
run: |
echo Moaar test!