Skip to content

Commit

Permalink
First pass at workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mgacy committed Jan 10, 2024
1 parent 66e8648 commit 5a63b44
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release
on:
workflow_dispatch:
inputs:
release_type:
description: Type of release
type: choice
required: true
options:
- patch
- minor
- major

jobs:
test:
name: Test
uses:

release:
name: Release
uses:
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
unit_tests:
name: Run Tests
uses:

0 comments on commit 5a63b44

Please sign in to comment.