mirror of https://github.com/avast/PurpleDome
Splitting CI tests for better result handling in README. Added another status badge for develop branch - it is the core branch for development
parent
533a376cc2
commit
65af48d777
@ -0,0 +1,28 @@
|
||||
name: Develop
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ develop ]
|
||||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python: [ 3.9 ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
- name: Install Tox and any other packages
|
||||
run: pip install tox
|
||||
- name: Run check
|
||||
run: make check
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
name: Makefile CI
|
||||
name: Main
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main, develop ]
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
Loading…
Reference in New Issue