Skip to content

Commit

Permalink
Create windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastiaanKlippert committed Jun 23, 2024
1 parent 65e9c49 commit fb09827
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Windows build & test

on: workflow_dispatch

jobs:

build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4.1.7

- name: Install wkhtmltopdf
run: choco install wkhtmltopdf

- name: Set up Go
uses: actions/setup-go@v5.0.1
with:
go-version: stable

- name: Build
run: go build -v .

- name: Test
run: go test -v .

- name: Upload artifacts
uses: actions/upload-artifact@v4.3.3
with:
name: TestPDFs
path: '**/*.pdf'

0 comments on commit fb09827

Please sign in to comment.