Skip to content

Applies various fixes and refactors workflows (#79) #6

Applies various fixes and refactors workflows (#79)

Applies various fixes and refactors workflows (#79) #6

Workflow file for this run

name: Tests and Checks
on:
push:
branches:
jobs:
build-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --upgrade setuptools wheel twine build
- name: Build pip package
run: |
rm -rf dist/ build/ datalab_client.egg-info/ astro_datalab.egg-info/
python -m build