Merge pull request #115 from MightyCreak/ci-split-linter-and-build
ci: split linter and build jobs
This commit is contained in:
commit
6ad8038ddf
|
@ -1,5 +1,3 @@
|
||||||
# This is a basic workflow to help you get started with Actions
|
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
# Controls when the action will run.
|
# Controls when the action will run.
|
||||||
|
@ -15,21 +13,25 @@ on:
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
# This workflow contains a single job called "build"
|
lint:
|
||||||
build:
|
|
||||||
# The type of runner that the job will run on
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Lint
|
- name: Pylint
|
||||||
uses: cclauss/GitHub-Action-for-pylint@master
|
uses: cclauss/GitHub-Action-for-pylint@master
|
||||||
with:
|
with:
|
||||||
args: "pylint src/vcs/"
|
args: "pylint src/vcs/"
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get -y install appstream appstream-util desktop-file-utils gettext
|
run: sudo apt-get -y install appstream appstream-util desktop-file-utils gettext
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue