Skip to content

Commit b286d6e

Browse files
Merge pull request #779 from OlafenwaMoses/olafenwamoses/github-action
Add base Github action implementation
2 parents fe2d6ba + 32473a5 commit b286d6e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build and Testing
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
UnitestPython38:
11+
12+
name: Python3.8 Tests
13+
runs-on: ubuntu-latest
14+
# needs: None
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.8'
20+
cache: 'pip'
21+
- name: Install Dependencies
22+
run: |
23+
pip install numpy
24+
python -m pip list

0 commit comments

Comments
 (0)