Skip to content

Commit

Permalink
Update ubuntu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastiaanKlippert committed Jun 23, 2024
1 parent e67bc7d commit e941e01
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.7

- name: Install wkhtmltopdf
run: |
Expand All @@ -20,7 +20,7 @@ jobs:
sudo dpkg -i wkhtmltox_0.12.6-1.bionic_amd64.deb
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5.0.1
with:
go-version: stable

Expand All @@ -31,12 +31,13 @@ jobs:
run: go test -v -coverprofile=coverage.txt -covermode=atomic -bench .

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

- name: CodeCov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.txt

0 comments on commit e941e01

Please sign in to comment.