Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Update README.md

Update README.md #70

Workflow file for this run

name: CI
on:
push: { branches: main }
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./axie-utils
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Poetry
uses: snok/install-poetry@v1.1.1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest --cov