Skip to content

Commit

Permalink
Combine testing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sean0x42 committed Oct 13, 2024
1 parent 1059a59 commit d6125bb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/action_test.yml

This file was deleted.

15 changes: 14 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test
name: Build and Test
on: [push]
jobs:
build-rust:
Expand All @@ -16,3 +16,16 @@ jobs:
- uses: actions/checkout@v4
- name: Verify docker image builds
run: docker build .

test-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./
with:
file: crates/markdown-extract/CHANGELOG.md
pattern: "v2.0.0"
- uses: ./
with:
file: crates/markdown-extract/CHANGELOG.md
pattern: '"this does not exist"'

0 comments on commit d6125bb

Please sign in to comment.