Skip to content

Commit 23c7b88

Browse files
committed
Run actions only on Linux for now
1 parent e798ec9 commit 23c7b88

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
os: [ubuntu-latest, windows-latest]
15+
os: [ubuntu-latest]
1616
php: [7.4, 8.0]
1717
laravel: [8.*]
1818
stability: [prefer-lowest, prefer-stable]
@@ -27,14 +27,9 @@ jobs:
2727
uses: actions/checkout@v2
2828

2929
- name: Download Franc binary
30-
uses: wei/wget@v1
31-
with:
32-
args: -O ./bin/language-guesser https://github.com/avvertix/franc-bin/releases/download/v1.0.0/franc-bin-linux
33-
34-
# - name: Ensure Franc binary is executable
35-
# if: "$RUNNER_OS" == "Linux"
36-
# run: |
37-
# chmod +x ./bin/language-guesser
30+
run: |
31+
wget -O ./bin/language-guesser https://github.com/avvertix/franc-bin/releases/download/v1.0.0/franc-bin-linux
32+
chmod +x ./bin/language-guesser
3833
3934
- name: Setup PHP
4035
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)