Skip to content

Initial work on v3 api #33

Initial work on v3 api

Initial work on v3 api #33

Workflow file for this run

name: CI
on: [push, pull_request] # Test every push and every PR
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.7"
- name: Install requirements
run: pip install -r requirements.txt
- name: Test with pytest
env:
PARLER_USERNAME: ${{ secrets.ParlerUsername }}
PARLER_PASSWORD: ${{ secrets.ParlerPassword }}
run: PARLER_USERNAME="$PARLER_USERNAME" PARLER_PASSWORD="$PARLER_PASSWORD" pytest