Skip to content

Commit

Permalink
verify access to the scripts directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jan 29, 2024
1 parent d128a74 commit 1115c6e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,17 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3

- name: Run script
- name: Can I `cd ./scripts`?
shell: bash
run: ./scripts/my-script.sh
run: |
sudo chmod +x ./scripts/my-script.sh
./scripts/my-script.sh
- name: Can I run .scripts/my-script.sh?
shell: bash
run: |
sudo chmod +x ./scripts/my-script.sh
./scripts/my-script.sh
# - name: Setup postgres
# uses: ./.github/actions/setup-postgres-linux

Expand Down

0 comments on commit 1115c6e

Please sign in to comment.