Skip to content

Commit ee8f045

Browse files
committed
added pypy2.yaml
1 parent 018b896 commit ee8f045

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

.github/workflows/pypy2.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#
2+
# Author: Hari Sekhon
3+
# Date: 2020-02-04 21:40:04 +0000 (Tue, 04 Feb 2020)
4+
#
5+
# vim:ts=2:sts=2:sw=2:et
6+
#
7+
# https://github.com/harisekhon/devops-python-tools
8+
#
9+
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
10+
#
11+
# https://www.linkedin.com/in/harisekhon
12+
#
13+
14+
name: CI PyPy 2
15+
16+
#env:
17+
# DEBUG: 1
18+
19+
on:
20+
push:
21+
branches:
22+
- master
23+
schedule:
24+
# * is a special character in YAML so you have to quote this string
25+
- cron: '0 7 * * *'
26+
27+
jobs:
28+
build:
29+
#name: build
30+
timeout-minutes: 60
31+
runs-on: ${{ matrix.os }}
32+
strategy:
33+
matrix:
34+
os: [ubuntu-latest]
35+
#python-version: [2.7, 3.6, 3.7, 3.8, pypy2, pypy3]
36+
python-version: [pypy2]
37+
steps:
38+
- uses: actions/checkout@v2
39+
- uses: actions/setup-python@v1
40+
with:
41+
python-version: ${{ matrix.python-version }}
42+
- uses: actions/cache@v1
43+
with:
44+
path: ~/.cache/pip
45+
key: ${{ runner.os }}-pip-devops-python-tools # -${{ hashFiles('**/requirements.txt') }}
46+
restore-keys: |
47+
${{ runner.os }}-pip-devops-python-tools
48+
- name: init
49+
run: make init
50+
- name: build
51+
run: make ci
52+
- name: test
53+
run: make test

0 commit comments

Comments
 (0)