8000 CI: Switch the Windows CI from Appveyor to GitHub Actions by lazka · Pull Request #83 · python/pyperformance · GitHub
[go: up one dir, main page]

Skip to content

CI: Switch the Windows CI from Appveyor to GitHub Actions #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 20, 2020
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
CI: Switch the Windows CI from Appveyor to GitHub Actions
  • Loading branch information
lazka committed Jul 19, 2020
commit 471e9c31a14cd92f82e0a54b13564f1f208c169d
21 changes: 0 additions & 21 deletions .appveyor.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test

on: [push, pull_request]

jobs:

test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - py${{ matrix.python-version }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install --upgrade pip setuptools
pip install -e .
- name: Run Tests
run: |
python runtests.py
4 changes: 0 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ The Python Benchmark Suite
:alt: Build status of pyperformance on Travis CI
:target: https://travis-ci.org/python/pyperformance

.. image:: https://ci.appveyor.com/api/projects/status/6sd9k88cwit27tgl/branch/master?svg=true
:alt: Build status of pyperformance on AppVeyor
:target: https://ci.appveyor.com/project/lazka/pyperformance-rdqv8

The ``pyperformance`` project is intended to be an authoritative source of
benchmarks for all Python implementations. The focus is on real-world
benchmarks, rather than synthetic benchmarks, using whole applications when
Expand Down
0