add support for basic header auth for messages and verify, move cover… #738
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: Build | |
on: [push, pull_request] | |
permissions: | |
actions: write | |
checks: write | |
contents: read | |
deployments: read | |
issues: write | |
discussions: write | |
packages: read | |
pages: write | |
pull-requests: write | |
security-events: write | |
statuses: write | |
env: | |
PANTS_CONFIG_FILES: "pants.ci.toml" | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: ["ubuntu-latest"] | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Initialize pants | |
uses: pantsbuild/actions/init-pants@main | |
with: | |
gha-cache-key: cache0-py${{ matrix.python }} | |
named-caches-hash: ${{ hashFiles('requirements.txt') }} | |
- name: Check BUILD files | |
run: | | |
pants tailor --check update-build-files --check :: | |
- name: Lint | |
run: | | |
pants lint :: | |
- name: Run tests | |
run: | | |
pants test --use-coverage :: |