Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

CI

CI #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
tags:
workflow_dispatch:
schedule:
# Run every Sunday at 04:53 UTC
- cron: 53 4 * * 0
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install
run: |
python -m pip install pip -U
pip install .[test]
- name: Run tests
run: pytest astropy_sphinx_theme