8000 Merge pull request #83 from lazka/ci-win32-gha · python/pyperformance@093a9ee · GitHub
[go: up one dir, main page]

Skip to content

Commit 093a9ee

Browse files
authored
Merge pull request #83 from lazka/ci-win32-gha
CI: Switch the Windows CI from Appveyor to GitHub Actions
2 parents b92f635 + 471e9c3 commit 093a9ee

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

.appveyor.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
7+
test:
8+
runs-on: ${{ matrix.os }}
9+
name: ${{ matrix.os }} - py${{ matrix.python-version }}
10+
strategy:
11+
matrix:
12+
os: [windows-latest]
13+
python-version: [3.6, 3.7, 3.8]
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install
21+
run: |
22+
pip install --upgrade pip setuptools
23+
pip install -e .
24+
- name: Run Tests
25+
run: |
26+
python runtests.py

README.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ The Python Benchmark Suite
1010
:alt: Build status of pyperformance on Travis CI
1111
:target: https://travis-ci.org/python/pyperformance
1212

13-
.. image:: https://ci.appveyor.com/api/projects/status/6sd9k88cwit27tgl/branch/master?svg=true
14-
:alt: Build status of pyperformance on AppVeyor
15-
:target: https://ci.appveyor.com/project/lazka/pyperformance-rdqv8
16-
1713
The ``pyperformance`` project is intended to be an authoritative source of
1814
benchmarks for all Python implementations. The focus is on real-world
1915
benchmarks, rather than synthetic benchmarks, using whole applications when

0 commit comments

Comments
 (0)
0