forked from RockLib/RockLib.Messaging
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to GitHub Actions (RockLib#153)
* removed appveyor configs and added actions * fixed broken path for rabbitmq tests
- Loading branch information
Showing
11 changed files
with
40 additions
and
784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Build and Publish | ||
|
||
#################################################################################################### | ||
## WORKFLOW TRIGGER | ||
#################################################################################################### | ||
on: | ||
# Workflow will run when a release is published. | ||
release: | ||
types: [ released, prereleased ] | ||
|
||
#################################################################################################### | ||
## WORKFLOW JOBS | ||
#################################################################################################### | ||
jobs: | ||
# Calls the shared build-and-publish workflow. | ||
call_build_and_publish: | ||
name: Call build-and-publish workflow | ||
uses: RockLib/RockLib.Workflows/.github/workflows/build-and-publish.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Build and Test | ||
|
||
#################################################################################################### | ||
## WORKFLOW TRIGGER | ||
#################################################################################################### | ||
on: | ||
# Workflow will run on any pull request to main. | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
#################################################################################################### | ||
## WORKFLOW JOBS | ||
#################################################################################################### | ||
jobs: | ||
# Calls the shared build-and-test workflow. | ||
call_build_and_test: | ||
name: Call build-and-test workflow | ||
uses: RockLib/RockLib.Workflows/.github/workflows/build-and-test.yml@main | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.