Skip to content

Replace Travis CI with GitHub Actions #8

Replace Travis CI with GitHub Actions

Replace Travis CI with GitHub Actions #8

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 129
install-chromedriver: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: coverage run runtests.py