Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Update Azure pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
adithyabsk committed Jun 25, 2019
1 parent bec9e0a commit fc95dbf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
6 changes: 0 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
strategy:
matrix:
linux:
imageName: 'ubuntu-16.04'
mac:
imageName: 'macos-10.13'
trigger:
- master
- development
Expand Down
13 changes: 13 additions & 0 deletions ci/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
inputs:
versionSpec: '$(python.version)'
- script: |
pip install --upgrade pip
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
displayName: Setup Poetry
- script: source $HOME/.poetry/env
displayName: Add Poetry command
- script: poetry install -vvv -E dev
displayName: Install packages
9 changes: 9 additions & 0 deletions ci/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: |
pip install pre-commit
pre-commit install-hooks
pre-commit run --all-files
displayName: Running pre-commit on all files

0 comments on commit fc95dbf

Please sign in to comment.