Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 47 additions & 8 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,56 @@
name: Main workflow
on: [push]

on:
push:
paths-ignore:
- 'doc/**'
- '**/*.md'
- 'LICENSE'
- 'example/**'
- '.gitignore'
workflow_dispatch:
pull_request:
paths-ignore:
- 'doc/**'
- '**/*.md'
- 'LICENSE'
- 'example/**'
- '.gitignore'


jobs:
build:
runs-on: ubuntu-16.04
linux-validate:
name: Validate on Linux - Python ${{ matrix.python }}
runs-on: ubuntu-20.04
strategy:
matrix:
python: [ '2.x', '3.x', 'pypy3' ]
name: Python ${{ matrix.python }} Testing
python: [ '3.6', '3.8', '3.12' ]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64
- run: python tests/run_tests.py

- name: Run tests
run: python tests/run_tests.py

windows-validate:
name: Validate on Windows - Python ${{ matrix.python }}
runs-on: windows-latest
strategy:
matrix:
python: [ '3.6', '3.8', '3.12' ]
steps:
- uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64

- name: Run tests
run: python tests/run_tests.py
42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

24 changes: 0 additions & 24 deletions appveyor.yml

This file was deleted.