Skip to content

E2E test ↔️

E2E test ↔️ #1395

Workflow file for this run

name: E2E test ↔️
on:
push:
repository_dispatch:
schedule:
- cron: 0 12 * * *
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Build distribution
run: make install
- uses: nanasess/setup-chromedriver@v1
- name: Run integration tests
run: make test
env:
KEY: ${{ secrets.anticaptcha_key }}
PROXY_URL: "${{ secrets.proxy_url }}"