fix gitpod by using Docker image #27
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: Python Desktop Web Best Practices | |
on: | |
- push | |
- pull_request | |
jobs: | |
python-tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install pipenv | |
uses: dschep/install-pipenv-action@v1 | |
- name: Install dependencies | |
run: pipenv install | |
- name: Run Desktop Best Practice Tests | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
run: pipenv run best-practice-mobile-web-vdc-us |