Skip to content

Commit

Permalink
Syntax fix workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
louilinn committed Feb 12, 2021
1 parent 9f2268a commit 107672f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Run tests on push and pull request

on: [push, pull-request]
on: [push, pull_request]

jobs:
setup:
runs-on: ubuntu-latest
steps:
steps:
- name: Add hosts to /etc/hosts
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
run: |
sudo echo "api.circles.local" | sudo tee -a /etc/hosts
sudo echo "graph.circles.local" | sudo tee -a /etc/hosts
Expand All @@ -24,7 +26,6 @@ jobs:
cp .env.example .env
- name: Container setup via docker-compose and migrate contracts
uses: docker
run: |
make build
make up
Expand All @@ -35,9 +36,9 @@ jobs:
run: make up

#- name: Copy core configs
# run: |
# cd $TRAVIS_BUILD_DIR
# cp .env.example .env
# run: |
# cd $TRAVIS_BUILD_DIR
# cp .env.example .env

test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 107672f

Please sign in to comment.