chore: use enum names in smithy-dafny-python, add ListObjectsV2 to S3 TestModel #2977
Workflow file for this run
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
name: smithy-dafny-conversion workflows | |
on: | |
pull_request: | |
push: | |
branches: | |
- main-1.x | |
jobs: | |
gradle-build-smithy-dafny-conversion: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "corretto" | |
java-version: "8" | |
- name: Setup Dafny | |
uses: dafny-lang/[email protected] | |
with: | |
dafny-version: "4.1.0" | |
- name: test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test | |
build-root-directory: smithy-dafny-conversion | |
- name: javadoc | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: javadoc | |
build-root-directory: smithy-dafny-conversion | |
- name: publishToMavenLocal | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: publishToMavenLocal | |
build-root-directory: smithy-dafny-conversion |