-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (74 loc) · 2.38 KB
/
ci.yml
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
77
name: Checks
on:
pull_request:
branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
python:
name: Python
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Poetry Action
uses: snok/[email protected]
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: "3.10"
cache: "poetry"
- name: Install Python Dependencies
run: |
poetry check --lock
poetry install --no-root
- name: Lint Python code using ruff
run: |
poetry run ruff format . --check
poetry run ruff check .
- name: Check type annotations using mypy
run: poetry run mypy
- name: Check imports using import-linter
run: poetry run lint-imports
- name: Check if requirements.txt is in sync with poetry.lock
run: poetry export --with=dev --output docker/requirements.txt && git diff --exit-code
- name: Set up NodeJS
uses: actions/[email protected]
with:
node-version: "20"
- name: Synthesize CDK deployment package
run: npx aws-cdk synth --strict
tests:
name: Run tests in Glue container
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Pull official glue image
run: docker pull amazon/aws-glue-libs:glue_libs_4.0.0_image_01
- name: Build container
run: USER_ID=$(id -u) docker compose --file docker/docker-compose.yml build glue
- name: Run tests in container
run: USER_ID=$(id -u) docker compose --file docker/docker-compose.yml run glue -c pytest
shell:
name: Shell
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Check shell scripts using shellcheck
uses: ludeeus/[email protected]
dockerfile:
name: Dockerfile
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Validate Dockerfile using hadolint
uses: hadolint/[email protected]
with:
dockerfile: docker/Dockerfile
makefile:
name: Makefile
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Check Makefile using checkmake
uses: Uno-Takashi/checkmake-action@v2