packager for windows #11
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: plugins-in-python | |
on: [pull_request] | |
jobs: | |
build: | |
name: Perform CI Checks | |
#env: | |
# PANTS_CONFIG_FILES: pants.ci.toml | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10.13'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pantsbuild/actions/init-pants@v4-scie-pants | |
with: | |
gha-cache-key: cache0-py${{ matrix.python-version }} | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Bootstrap Pants | |
run: | | |
pants --version | |
- name: Check BUILD files | |
run: pants tailor --check update-build-files --check | |
- name: Lint and typecheck | |
run: bin/lint |