File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v1
10+ - name : Run Makefile build for Development
11+ run : make build-dev
12+
13+ test :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v1
17+ - name : Install Dependencies
18+ run : |
19+ python -m pip install --upgrade pip
20+ pip install -r requirements.txt
21+ - name : Run Makefile test
22+ run : make test
23+
24+
25+ push :
26+ runs-on : ubuntu-latest
27+ steps :
28+ - uses : actions/checkout@v1
29+ - name : Log into Registry
30+ run : echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
31+ - name : Push to GitHub Package Registry
32+ run : make push VERSION=0.0.3
You can’t perform that action at this time.
0 commit comments