Update html5.html #40
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: macOS build & test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install wkhtmltopdf | |
run: brew install wkhtmltopdf | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: stable | |
- name: Build | |
run: go build -v . | |
- name: Test | |
run: go test -v . | |
- name: Upload artifacts | |
uses: actions/[email protected] | |
with: | |
name: TestPDFs | |
path: '**/*.pdf' |