Skip to content

Let's test via existing script #2

Let's test via existing script

Let's test via existing script #2

Workflow file for this run

name: Run test on PRs
on:
push
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Test yodeploy via script
run: |
chmod +x ./scripts/test.sh
./scripts/test.sh
shell: bash