Browse Source

Fixed error that can not use 'uses' and 'run' both

main
Granty1 5 years ago
parent
commit
119d6b6c18
  1. 4
      .github/workflows/go.yml

4
.github/workflows/go.yml

@ -13,6 +13,8 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v2
- name: Show files
run: ls -la
- name: Get dependencies
@ -22,7 +24,7 @@ jobs:
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: |
cd server

Loading…
Cancel
Save