Skip to content

Commit 5283c73

Browse files
chore: fix failing tests, update github actions (#6)
1 parent 762d73c commit 5283c73

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/tests.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@ on:
77
branches: [ "master" ]
88

99
jobs:
10-
build:
11-
name: Build
10+
run-scripts:
11+
name: Run scripts
1212
runs-on: ubuntu-22.04
1313
steps:
14-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
15+
16+
- name: Tweak options to run on GitHub
17+
run: |
18+
# Ignore user-specific scripts for GitHub runners
19+
sed -i 's/add_users.sh//g' scripts/run_order.txt
20+
sed -i 's/copy_admin_scripts.sh//g' scripts/run_order.txt
1621
17-
# Runs a single command using the runners shell
1822
- name: Run the scripts
1923
run: |
20-
sudo bash install.sh
24+
sudo ./install.sh

0 commit comments

Comments
 (0)