Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dacevedo12 committed Nov 19, 2023
1 parent 64df8cf commit cad9c35
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 4 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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]
4 changes: 0 additions & 4 deletions makes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,5 @@
targets = ["/"];
};
};
formatYaml = {
enable = true;
targets = ["/"];
};
imports = [./otelcontribs/makes.nix];
}

0 comments on commit cad9c35

Please sign in to comment.