* Bump websockets from 13.1 to 14.1 Bumps [websockets](https://github.com/python-websockets/websockets) from 13.1 to 14.1. - [Release notes](https://github.com/python-websockets/websockets/releases) - [Commits](https://github.com/python-websockets/websockets/compare/13.1...14.1) --- updated-dependencies: - dependency-name: websockets dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * use Python 3.9 only * update deprecated websocket connection * generate client * ignore .vscode/ --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Greg Sweeney <greg@kittycad.io>
63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
name: build & test
|
|
on:
|
|
push:
|
|
branches: main
|
|
paths:
|
|
- '**.py'
|
|
- .github/workflows/build-test.yml
|
|
- 'pyproject.toml'
|
|
- 'poetry.lock'
|
|
- 'spec.json'
|
|
pull_request:
|
|
paths:
|
|
- '**.py'
|
|
- .github/workflows/build-test.yml
|
|
- 'pyproject.toml'
|
|
- 'poetry.lock'
|
|
- 'spec.json'
|
|
workflow_dispatch:
|
|
inputs:
|
|
jobs:
|
|
build-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.9
|
|
|
|
# Installation instructions are from: https://python-poetry.org/docs/
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: |
|
|
pip install \
|
|
poetry
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
poetry install
|
|
poetry build
|
|
|
|
- name: Run pytest
|
|
shell: bash
|
|
run: |
|
|
poetry run pytest --cov=./ --cov-report=xml kittycad
|
|
env:
|
|
KITTYCAD_API_TOKEN: ${{secrets.KITTYCAD_API_TOKEN}}
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
fail_ci_if_error: true
|
|
flags: unittests
|
|
files: ${{ github.workspace }}/coverage.xml
|
|
verbose: true
|
|
|