-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.34 KB
/
dev.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
concurrency:
cancel-in-progress: true
group: ${{ github.actor }}
jobs:
formatNix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker://ghcr.io/fluidattacks/makes/amd64:latest
with:
set-safe-directory: /github/workspace
args: sh -c "chown -R root:root /github/workspace && m . /formatNix"
formatPython:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker://ghcr.io/fluidattacks/makes/amd64:latest
with:
set-safe-directory: /github/workspace
args: sh -c "chown -R root:root /github/workspace && m . /formatPython/default"
lintPython_module_aiobotocore:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker://ghcr.io/fluidattacks/makes/amd64:latest
with:
set-safe-directory: /github/workspace
args: sh -c "chown -R root:root /github/workspace && m . /lintPython/module/aiobotocore"
lintPython_module_graphql_core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker://ghcr.io/fluidattacks/makes/amd64:latest
with:
set-safe-directory: /github/workspace
args: sh -c "chown -R root:root /github/workspace && m . /lintPython/module/graphql_core"
name: dev
on:
push:
branches: [main]