Initial work on v3 api #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |