File tree 1 file changed +12
-4
lines changed
1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 6
6
branches : [main]
7
7
jobs :
8
8
build :
9
- timeout-minutes : 10
9
+ timeout-minutes : 15
10
10
runs-on : ubuntu-latest
11
11
services :
12
12
# Label used to access the service container
30
30
steps :
31
31
- name : Checkout
32
32
uses : actions/checkout@v1
33
- - uses : crystal-lang/install-crystal@v1
34
- - uses : browser-actions/setup-geckodriver@latest
33
+
34
+ - name : Installs Crystal
35
+ uses : crystal-lang/install-crystal@v1
36
+
37
+ - name : Install Geckodriver
38
+ run : |
39
+ wget https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz
40
+ sudo tar -xvf geckodriver-v0.26.0-linux64.tar.gz
41
+ sudo mv geckodriver /usr/local/bin/
42
+ cd /usr/local/bin/
43
+ sudo chmod +x geckodriver
35
44
36
45
- name : Crystal Ameba Linter
37
46
uses :
crystal-ameba/[email protected]
47
56
run : shards build
48
57
49
58
- name : Run tests
50
- uses : browser-actions/setup-geckodriver@latest
51
59
run : crystal spec
52
60
env :
53
61
LOG_LEVEL : " debug"
You can’t perform that action at this time.
0 commit comments