Skip to content

Commit a71f0ff

Browse files
Create main.yml
1 parent aa210d4 commit a71f0ff

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
on:
6+
push:
7+
branches: [ master ]
8+
pull_request:
9+
branches: [ master ]
10+
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: Compile and package
21+
run: |
22+
python3 ./setup.py install
23+
24+
- name: Test code
25+
run: |
26+
python3 ./setup.py test

0 commit comments

Comments
 (0)