Skip to content

chore: fix small refactor #204

chore: fix small refactor

chore: fix small refactor #204

Workflow file for this run

name: tests
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name:
- "linting"
- "ubuntu-py37"
- "ubuntu-py38"
- "ubuntu-py39"
- "ubuntu-py310"
- "macos-py37"
- "macos-py38"
- "macos-py39"
include:
- name: "linting"
python: "3.8"
os: ubuntu-latest
tox_env: "lint"
- name: "ubuntu-py37"
python: "3.7"
os: ubuntu-latest
tox_env: "py37"
- name: "ubuntu-py38"
python: "3.8"
os: ubuntu-latest
tox_env: "py38"
- name: "ubuntu-py39"
python: "3.8"
os: ubuntu-latest
tox_env: "py38"
- name: "ubuntu-py310"
python: "3.8"
os: ubuntu-latest
tox_env: "py38"
- name: "macos-py37"
python: "3.7"
os: macos-latest
tox_env: "py37"
- name: "macos-py38"
python: "3.8"
os: macos-latest
tox_env: "py38"
- name: "macos-py39"
python: "3.8"
os: macos-latest
tox_env: "py38"
steps:
- name: Collect Workflow Telemetry
uses: runforesight/foresight-workflow-kit-action@v1
if: success() || failure()
with:
api_key: ${{ secrets.FORESIGHT_API_KEY }}
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox virtualenv
- name: Test build
run: "tox -e ${{ matrix.tox_env }}"
- name: Analyze Test and/or Coverage Results
uses: runforesight/foresight-test-kit-action@v1
if: ${{ always() }}
with:
api_key: ${{ secrets.FORESIGHT_API_KEY }}
coverage_path: ./coverage.xml
coverage_format: JACOCO/XML
test_framework: pytest
test_path: ./foresight-reports/**
test_format: JUNIT