Update blank.yml #145
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: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
repo: [ulule/loukoum, gdm85/wolfengo] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: ${{ matrix.repo }} | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20.x" | |
cache: false | |
- name: Get Go cached paths | |
run: | | |
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV | |
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV | |
- name: get | |
run: | | |
go get | |
- name: build | |
run: | | |
go get | |
- name: stats | |
run: | | |
echo 'Build results size(Mb):' | |
du -m -s `go env GOCACHE` | |
echo 'Dependency results size(Mb):' | |
du -m -s `go env MODGOCACHE` | |