Skip to content

Remove separate modules to test lazy module loading #180

Remove separate modules to test lazy module loading

Remove separate modules to test lazy module loading #180

Workflow file for this run

name: ci
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: gacts/install-hurl@v1
- name: Build
run: go build -v ./...
- name: Run Go Tests
run: go test -v ./...
- name: Run Integration Tests
run: go run ./test
- name: Build binaries for all platforms
run: .github/workflows/release.sh
- uses: actions/upload-artifact@v4
with:
name: xtemplate-dist
path: 'dist/*'
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: 'dist/*'