Track the full paths of attachments in the Attachment object #130
Workflow file for this run
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: 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.22' | |
- 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 }} |