Skip to content

Add custom to_argilla_{dataset,record} to SelfInstructTask (#169) #31

Add custom to_argilla_{dataset,record} to SelfInstructTask (#169)

Add custom to_argilla_{dataset,record} to SelfInstructTask (#169) #31

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Looks like it's not working very well for other people:
# https://github.com/actions/setup-python/issues/436
# cache: "pip"
# cache-dependency-path: pyproject.toml
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -e .[dev,tests]
- name: Lint
run: make lint
- name: Test
run: make test