Create main.yml #10

Merged
julian-CStack merged 4 commits from add_action into main 2023-05-18 21:58:26 +00:00
Showing only changes of commit 7a2107a7bc - Show all commits

20
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,20 @@
#should deny
name: Verify
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Prepare repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install -y unzip jq
- name: Run verify script
run: |
bash scripts/verify.sh
if [ $? -eq 1 ]; then
exit 1
fi