pref: Possible issue with unreleased files. #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Generate Test Files | |
run: | | |
chmod +x scripts/generate-test-files.sh | |
sh scripts/generate-test-files.sh | |
- name: Go Test | |
run: go test -v --count=1 | |
- name: Build test | |
run: go build -o release/drone-zip-release |