Java V2: Create 27 Java V2 code examples for S3 directory bucket actions, S3 #1567
Workflow file for this run
This file contains hidden or 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: Dotnet Lint and Check | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| dotnetcheck: | |
| name: Lint DotNet | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: | | |
| 6.0.x | |
| 8.0.x | |
| - name: Checkout files | |
| uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: | | |
| .github | |
| dotnetv3 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@e9772d140489982e0e3704fea5ee93d536f1e275 | |
| with: | |
| files: "dotnetv3/**/*.{cs,sln,csproj,json}" | |
| - name: Build check | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| run: | | |
| cd dotnetv3 | |
| dotnet build -v=q --property WarningLevel=0 /clp:ErrorsOnly | |
| - name: Lint and format check | |
| if: steps.changed-files.outputs.any_changed == 'true' && (success() || failure()) | |
| run: | | |
| cd dotnetv3 | |
| dotnet format --verify-no-changes |