Browse Source

Add working-directory tag

main
Granty1 5 years ago
parent
commit
4d3d4365a3
  1. 8
      .github/workflows/go.yml

8
.github/workflows/go.yml

@ -19,14 +19,20 @@ jobs:
- name: Get dependencies - name: Get dependencies
run: | run: |
cd server
go get -v -t -d ./... go get -v -t -d ./...
if [ -f Gopkg.toml ]; then if [ -f Gopkg.toml ]; then
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
working-directory: ./server
- name: Build - name: Build
run: | run: |
go build -v . go build -v .
working-directory: ./server
- name: Run
run: |
nohup ./gin-vue-admin &
working-directory: ./server
Loading…
Cancel
Save