Skip to content

Commit

Permalink
Simplify more
Browse files Browse the repository at this point in the history
  • Loading branch information
BanjoFox committed Aug 23, 2023
1 parent d5a10c1 commit b2dc3f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/aardwolf-build.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
name: Aardwolf-Build
---
name: Build
on:
push:
branches:
- "**/*"
- "*"
pull_request:
branches:
- main

concurrency:
group: "${{ github.ref }}"
cancel-in-progress: true

jobs:

Build:
cargo-build:
runs-on: ubuntu-latest

steps:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/aardwolf-test.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: Aardwolf-Test
---
name: Test

on:
workflow_run:
workflows:
- "Aardwolf-Build"
- Build
types:
- completed

jobs:

Test:
cargo-test:
name: Cargo Test
runs-on: ubuntu-latest
steps:
- name: Cargo test aardwolf
- name: Cargo test Aardwolf
run: cargo test --all --verbose

0 comments on commit b2dc3f9

Please sign in to comment.