Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Aug 17, 2024
1 parent 455831f commit cb0bf32
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Test Workflow"

on:
workflow_dispatch:

jobs:
safety_check:
runs-on: ubuntu-latest
environment: release
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Security Check"
uses: Pycord-Development/[email protected]
with:
whitelisted-github-ids: ${{ vars.ALLOWED_USER_IDS }}
- name: "Test Output"
run: echo "Hi"
further_test:
runs-on: ubuntu-latest
environment: release
needs: [safety_check]
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "List Files"
run: ls

0 comments on commit cb0bf32

Please sign in to comment.