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
run: |
cd server
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
working-directory: ./server
- name: Build
run: |
go build -v .
working-directory: ./server
- name: Run
run: |
nohup ./gin-vue-admin &
working-directory: ./server
Loading…
Cancel
Save