Skip to content

feat: add bitbucket comments and build status #83

feat: add bitbucket comments and build status

feat: add bitbucket comments and build status #83

Workflow file for this run

name: CI
'on':
pull_request:
push:
branches:
- main
- 'release/*'
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e '.[dev]'
- name: Lint
run: ruff check .
- name: Format check
run: ruff format --check .
- name: Run tests
run: python -m pytest -q
- name: Build package
run: python -m build
- name: Build release binary smoke test
run: |
pyinstaller atlassian.spec --clean --noconfirm
./dist/atlassian/atlassian --help >/dev/null