Skip to content

Commit

Permalink
chore(build): Add basic usage test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Thurman committed May 21, 2020
1 parent 05d7bc3 commit 9a8f388
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on: [push]

jobs:
new_relic:
example_1_workflow:
runs-on: ubuntu-latest
name: New Relic Deployment Marker GitHub Action
steps:
Expand All @@ -17,3 +17,17 @@ jobs:
user: "${{ github.actor }}" # optional
region: US # optional
accountId: ${{ secrets.NEW_RELIC_ACCOUNT_ID }} # optional

basic_usage_test:
runs-on: ubuntu-latest
name: Basic usage test
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Test deployment marker
uses: ./
with:
apiKey: ${{ secrets.NEW_RELIC_API_KEY }}
applicationId: ${{ secrets.APPLICATION_ID }}
revision: "deployment-marker-action-basic-test:${{ github.ref }}"

0 comments on commit 9a8f388

Please sign in to comment.