Skip to content

Commit 3dc035d

Browse files
committed
added mac_10.15.yaml
1 parent b898f46 commit 3dc035d

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.github/workflows/mac_10.15.yaml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#
2+
# Author: Hari Sekhon
3+
# Date: Tue Feb 4 09:53:28 2020 +0000
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 Mac 10.15
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 10 30 * *'
26+
27+
jobs:
28+
build:
29+
#name: build
30+
timeout-minutes: 60
31+
runs-on: macos-10.15
32+
steps:
33+
- uses: actions/checkout@v2
34+
- uses: actions/cache@v1
35+
with:
36+
path: ~/Library/Caches/pip
37+
key: ${{ runner.os }}-pip-devops-python-tools # -${{ hashFiles('**/requirements.txt') }}
38+
restore-keys: |
39+
${{ runner.os }}-pip-devops-python-tools
40+
- name: brew update
41+
run: which brew && brew update || :
42+
- name: build
43+
run: make
44+
- name: test
45+
run: make test

0 commit comments

Comments
 (0)