chore: Switch from zerolog to slog #3736
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: Build | |
on: | |
push: | |
branches: [ main ] | |
tags: [ 'v*' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/hairyhenderson/gomplate-ci-build | |
steps: | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Someone" | |
git config --global --add safe.directory /__w/gomplate/gomplate | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: make build | |
- name: Save binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gomplate | |
path: bin/gomplate | |
- run: make test | |
- run: make integration | |
windows-build: | |
runs-on: windows-latest | |
env: | |
# note: the tmp dir is set to C: so that it's not on the same drive as the | |
# repo, which is on D: - this will expose bugs with path handling! | |
TMP: C:\tmp | |
steps: | |
- run: pwd | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.x' | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Someone" | |
- run: make build | |
- name: Save binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gomplate.exe | |
path: bin/gomplate.exe | |
- run: make test | |
- run: make integration |