Skip to content

Commit e66ed80

Browse files
authored
ci: add GHA workflow for smithy-dotnet tests (#22)
1 parent cc6837b commit e66ed80

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: smithy-dotnet workflows
2+
3+
on: ['push']
4+
5+
jobs:
6+
gradle-build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-java@v3
11+
with:
12+
distribution: 'corretto'
13+
java-version: '16'
14+
- name: Execute tests
15+
uses: gradle/gradle-build-action@v2
16+
with:
17+
arguments: test
18+
build-root-directory: smithy-dotnet

0 commit comments

Comments
 (0)