17 lines
453 B
YAML
17 lines
453 B
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: Test
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9' # Version range or exact version of a Python version to use, using SemVer's version range syntax
|
|
- run: python -m pip install --upgrade pipenv wheel
|
|
- run: make test
|