Install dependencies in CI too #165
Workflow file for this run
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: Main | |
on: | |
push: | |
jobs: | |
build: | |
name: 'Go Build (1.20)' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: "Install libheif" | |
run: "apt-get install libheif-dev libdex265-dev" | |
- run: './build.sh' # verify the thing compiles | |
static: | |
name: 'Go Static (1.20)' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: "Install libheif" | |
run: "apt-get install libheif-dev libdex265-dev" | |
- name: "Prepare: compile assets" | |
run: "GOBIN=$PWD/bin go install -v ./cmd/compile_assets" | |
- name: "Run: compile assets" | |
run: "$PWD/bin/compile_assets" | |
- name: "Prepare: staticcheck" | |
run: 'go install honnef.co/go/tools/cmd/staticcheck@latest' | |
- run: 'go vet ./...' | |
- run: 'staticcheck ./...' | |
test: | |
name: 'Go Test (1.20)' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: "Prepare: compile assets" | |
run: "GOBIN=$PWD/bin go install -v ./cmd/compile_assets" | |
- name: "Run: compile assets" | |
run: "$PWD/bin/compile_assets" | |
- name: "Run: tests" | |
run: "go test -c -v ./test && ./test.test '-test.v'" # cheat and work around working directory issues | |
timeout-minutes: 30 |