Skip to content

add groq and make it default #11

add groq and make it default

add groq and make it default #11

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build dev environment
run: make dev
- name: Unit tests
run: make test
- name: Build distribution
run: make dist
- name: Push release
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: make release
- name: Update docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make docs