Skip to content

fix(github-storage): set current checkout branch as default #1423

fix(github-storage): set current checkout branch as default

fix(github-storage): set current checkout branch as default #1423

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Run test
env:
GITHUB_ORG: ${{ secrets.GH_ORG }}
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
run: PYTHONPATH=./docs_src pytest -vv