Skip to content

Commit e77aa78

Browse files
author
brentru
committed
remove actions ci
1 parent ce36a99 commit e77aa78

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@ name: Build-CI
33
on: [pull_request, push]
44

55
jobs:
6-
test:
6+
build:
77
runs-on: ubuntu-latest
8+
89
steps:
9-
- name: Prepare repo
10-
uses: actions/checkout@master
11-
- name: Test
12-
uses: onichandame/python-test-action@master
10+
- uses: actions/checkout@v2
11+
- name: Set up Python 3.8
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.8
15+
- name: Install dependencies
16+
run: |
17+
python -m pip install --upgrade pip
18+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

0 commit comments

Comments
 (0)