diff options
author | Nicolas Peugnet <n.peugnet@free.fr> | 2021-08-23 13:28:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 13:28:41 +0200 |
commit | e0b1733b3d7c88c79d4d92d8c6fac97bbd73f06b (patch) | |
tree | 29364d3dd95fd77edce11cb2bb0545a205d4d751 /.github/workflows/build.yml | |
parent | 97638899fa9a160b1cc83a57d1c41d89f5763f49 (diff) | |
download | dna-backup-e0b1733b3d7c88c79d4d92d8c6fac97bbd73f06b.tar.gz dna-backup-e0b1733b3d7c88c79d4d92d8c6fac97bbd73f06b.zip |
Create build.yml (#1)
* Create build.yml
* Add cache action
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f09e7bf --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,35 @@ +name: build + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.17 + + - name: Set up cache + uses: actions/cache@v2 + with: + path: | + ~/.cache/go-build + ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... |