From 690b118f1a7d61e937173a1d545697fb2a094027 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 1 Nov 2024 18:39:33 -0400 Subject: Fix --- .github/worflows/pull_request.yaml | 27 --------------------------- .github/workflows/pull_request.yaml | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 27 deletions(-) delete mode 100644 .github/worflows/pull_request.yaml create mode 100644 .github/workflows/pull_request.yaml (limited to '.github') diff --git a/.github/worflows/pull_request.yaml b/.github/worflows/pull_request.yaml deleted file mode 100644 index c643859..0000000 --- a/.github/worflows/pull_request.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: August Offensive PR - -on: - pull_request: - branches: [ "trunk", "master" ] - -jobs: - - rust: - runs-on: ubuntu-latest - - container: - image: xd009642/tarpaulin:develop-nightly - options: --security-opt seccomp=unconfined - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Generate code coverage - run: | - cargo tarpaulin --verbose --workspace --exclude-files src/schema.rs --out xml - - - name: Upload code coverage report to artifacts - uses: actions/upload-artifact@v4 - with: - path: cobertura.xml - diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 0000000..c643859 --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,27 @@ +name: August Offensive PR + +on: + pull_request: + branches: [ "trunk", "master" ] + +jobs: + + rust: + runs-on: ubuntu-latest + + container: + image: xd009642/tarpaulin:develop-nightly + options: --security-opt seccomp=unconfined + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Generate code coverage + run: | + cargo tarpaulin --verbose --workspace --exclude-files src/schema.rs --out xml + + - name: Upload code coverage report to artifacts + uses: actions/upload-artifact@v4 + with: + path: cobertura.xml + -- cgit