Return markdown as html so it doesn't have to be explicitly trusted w… #80
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] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- uses: gacts/install-hurl@v1 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
- name: Run Hurl Tests | |
run: ./test/exec.sh | |
- name: Build binaries for all platforms | |
run: .github/workflows/release.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xtemplate-dist | |
path: 'dist/*' | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: 'dist/*' |