diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml new file mode 100644 index 0000000..9faeeca --- /dev/null +++ b/.github/workflows/dev.yaml @@ -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] diff --git a/makes.nix b/makes.nix index cf3335f..b278e7e 100644 --- a/makes.nix +++ b/makes.nix @@ -9,9 +9,5 @@ targets = ["/"]; }; }; - formatYaml = { - enable = true; - targets = ["/"]; - }; imports = [./otelcontribs/makes.nix]; }