Skip to content

Commit 107672f

Browse files
committed
Syntax fix workflow tests
1 parent 9f2268a commit 107672f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: Run tests on push and pull request
22

3-
on: [push, pull-request]
3+
on: [push, pull_request]
44

55
jobs:
66
setup:
77
runs-on: ubuntu-latest
8-
steps:
8+
steps:
99
- name: Add hosts to /etc/hosts
10+
env:
11+
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
1012
run: |
1113
sudo echo "api.circles.local" | sudo tee -a /etc/hosts
1214
sudo echo "graph.circles.local" | sudo tee -a /etc/hosts
@@ -24,7 +26,6 @@ jobs:
2426
cp .env.example .env
2527
2628
- name: Container setup via docker-compose and migrate contracts
27-
uses: docker
2829
run: |
2930
make build
3031
make up
@@ -35,9 +36,9 @@ jobs:
3536
run: make up
3637

3738
#- name: Copy core configs
38-
# run: |
39-
# cd $TRAVIS_BUILD_DIR
40-
# cp .env.example .env
39+
# run: |
40+
# cd $TRAVIS_BUILD_DIR
41+
# cp .env.example .env
4142

4243
test:
4344
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)