Skip to content
Snippets Groups Projects
Commit 49ee03f8 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

move off to GitHub Actions

parent 765a0f78
No related branches found
No related tags found
No related merge requests found
name: build-satella
run-name: ${{ github.actor }}
on: [ push ]
jobs:
build-wheel:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [ "3.6", "3.7", "3.8", "pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@4
- uses: actions/setup-python@4
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
- name: Install everything
run: pip install -e .[test,dev,extras]
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
paths:
- 'dist/*'
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.6", "3.7", "3.8", "pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@4
- uses: actions/setup-python@4
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
- name: Test everything
run: pytest -n 8 -vv --cov=satella
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
tags:
- '!*' # Do not execute on tags
paths:
- '!*.MD'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment