Skip to content

Fix role in .github/workflows/release.yml #22

Fix role in .github/workflows/release.yml

Fix role in .github/workflows/release.yml #22

Workflow file for this run

name: build
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-test.txt
pip install "tox<4"
- name: Run tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
fab coverage
coveralls
- name: Build
run: fab build