-
Notifications
You must be signed in to change notification settings - Fork 321
76 lines (73 loc) · 2.03 KB
/
hma-ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright (c) Meta Platforms, Inc. and affiliates.
name: HMA CI
on:
pull_request:
paths:
- "hasher-matcher-actioner/**"
- ".github/workflows/hma-ci.yaml"
push:
branches:
- main
paths:
- "hasher-matcher-actioner/**"
- ".github/workflows/hma-ci.yaml"
defaults:
run:
working-directory: hasher-matcher-actioner
jobs:
terraform-checks:
name: Format & Validate Terraform Configuration
runs-on: ubuntu-latest
defaults:
run:
working-directory: hasher-matcher-actioner/terraform
steps:
- uses: actions/checkout@v2
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: 0.14.x
- name: Check format
run: terraform fmt -check -diff -recursive -no-color
continue-on-error: true
- name: Init Modules
run: terraform init
- name: Validate terraform files
run: terraform validate -no-color
lint-and-types:
name: Lint and Type-Check python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
bash ./scripts/set_threatexchange_source local
- name: Check code format
run: |
black --check .
- name: Check python types
run: |
python -m mypy hmalib
test:
name: Run python tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
bash ./scripts/set_threatexchange_source local
- name: Test with pytest
run: |
python -m py.test hmalib