-
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.
Merge pull request #11 from Workiva/gha-impl
FEA-2609: Implemented Github Actions
- Loading branch information
Showing
5 changed files
with
56 additions
and
65 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,15 @@ | ||
## Motivation | ||
<!-- | ||
High-level overview of what you are trying to fix or improve, and why. | ||
Include any relevant background information that reviewers should know. | ||
--> | ||
|
||
## Changes | ||
<!-- | ||
What this PR changes to fix the problem. | ||
--> | ||
|
||
## Testing/QA Instructions | ||
<!-- | ||
List manual testing instructions here if necessary, or indicate passing CI suffices if the changes are well covered by automated tests. | ||
--> |
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,11 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
groups: | ||
gha-dependencies: | ||
patterns: | ||
- "*" |
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,29 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '*' | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
package: | ||
runs-on: [self-hosted, small] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Workiva/gha-dart/[email protected] | ||
|
||
checks: | ||
uses: Workiva/gha-dart/.github/workflows/[email protected] | ||
|
||
unit-tests: | ||
uses: Workiva/gha-dart/.github/workflows/[email protected] | ||
|
||
semver-audit: | ||
uses: Workiva/gha-dart/.github/workflows/[email protected] |
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
FROM drydock-prod.workiva.net/workiva/dart_build_image:3 as build | ||
|
||
FROM scratch |
This file was deleted.
Oops, something went wrong.