Skip to content

Change Env level to uid (#21) #19

Change Env level to uid (#21)

Change Env level to uid (#21) #19

Workflow file for this run

# This workflow will run tox.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build Main
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox and any other packages
run: uv tool install tox
- name: Run tox
# (defaults to pyproject.tolm)
run: tox