Skip to content

Implement additional User/Workspace fields (#7) #58

Implement additional User/Workspace fields (#7)

Implement additional User/Workspace fields (#7) #58

Workflow file for this run

name: Run tests
on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
tox:
name: "tox"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox wheel flake8 build
- name: Run tests
run: tox