Skip to content

feat: Go - clean action (#40) #33

feat: Go - clean action (#40)

feat: Go - clean action (#40) #33

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- chroma_ops/**
pull_request:
branches:
- main
paths:
- chroma_ops/**
jobs:
test:
runs-on: [ "ubuntu-latest" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
set -e
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python3 -
# - name: Lint with flake8
# run: |
# set -e
# poetry update
# pre-commit run --from-ref HEAD~1 --to-ref HEAD
- name: Run tests
run: |
set -e
poetry update --with dev
poetry run pytest