Fixed error that can not use 'uses' and 'run' both
This commit is contained in:
parent
a68628efbe
commit
443922c7de
|
@ -13,6 +13,8 @@ jobs:
|
||||||
|
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Show files
|
||||||
run: ls -la
|
run: ls -la
|
||||||
|
|
||||||
- name: Get dependencies
|
- name: Get dependencies
|
||||||
|
@ -22,7 +24,7 @@ jobs:
|
||||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
||||||
dep ensure
|
dep ensure
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd server
|
cd server
|
||||||
|
|
Loading…
Reference in New Issue