chore(deps): upgrade to Gotenberg 8.7.0 #77
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache: false | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.59.0 | |
tests: | |
needs: | |
- Lint | |
name: Tests | |
# TODO: once arm64 actions are available, also run the tests on this architecture. | |
# See: https://github.com/actions/virtual-environments/issues/2552#issuecomment-771478000. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Build testing environment | |
run: make build build-tests | |
- name: Run tests | |
run: | | |
make tests-once |