Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: build

on: push
on: [push, pull_request]

jobs:
lint:
Expand All @@ -17,15 +17,15 @@ jobs:

- name: Install dependencies
run: |
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install .[dev]
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install .[dev]

- name: Check formatting
run: |
source venv/bin/activate
./scripts/check_format.sh
source venv/bin/activate
./scripts/check_format.sh

- name: Lint
run: |
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
run: |
source venv/bin/activate
nose2 -v

integration-test:
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ repos:
- id: detect-api-keys
name: detect-api-keys
description: Checks for AWS or Datadog API keys
entry: ".git-hooks/detect-api-keys.py"
entry: ".github/.git-hooks/detect-api-keys.py"
language: python
exclude: tests