Skip to content

Add a starter template for weasyprint #124

Add a starter template for weasyprint

Add a starter template for weasyprint #124

Workflow file for this run

name: Makefile CI
on:
push: {}
pull_request:
branches: [ $default-branch ]
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install wkhtmltopdf
run: brew install wkhtmltopdf
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Build
run: make
- name: Test
run: make test
- name: Upload Code Coverage
uses: Wandalen/wretry.action@v3
with:
action: codecov/codecov-action@v4
attempt_limit: 10
attempt_delay: 10000
with: |
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}