diff --git a/.github/workflows/aardwolf-build.yml b/.github/workflows/aardwolf-build.yml index 16813255..d35c1aed 100644 --- a/.github/workflows/aardwolf-build.yml +++ b/.github/workflows/aardwolf-build.yml @@ -4,7 +4,6 @@ on: branches: - "**/*" pull_request: - workflow_call: concurrency: group: "${{ github.ref }}" @@ -12,12 +11,12 @@ concurrency: jobs: - Aardwolf-Build: + Build: runs-on: ubuntu-latest steps: - - name: checkout + - name: Checkout uses: actions/checkout@v3.5.3 # Installs the most recent stable rust toolchain as of the specified time # offset, which may be written in years, months, weeks, or days. diff --git a/.github/workflows/aardwolf-test.yml b/.github/workflows/aardwolf-test.yml index b7db815a..962a481c 100644 --- a/.github/workflows/aardwolf-test.yml +++ b/.github/workflows/aardwolf-test.yml @@ -8,10 +8,9 @@ on: jobs: - Aardwolf-Test: + Test: + name: Cargo Test runs-on: ubuntu-latest steps: - - uses: ./.github/workflows/aardwolf-build.yml - - - name: Cargo test aardwolf - run: cargo test --all --verbose \ No newline at end of file + - name: Cargo test aardwolf + run: cargo test --all --verbose \ No newline at end of file