Skip to content

Commit

Permalink
feat: enforce Dafny formatting (#865)
Browse files Browse the repository at this point in the history
* feat: enforce Dafny formatting
  • Loading branch information
ajewellamz committed Mar 27, 2024
1 parent 56f1cd1 commit dfc0dbd
Show file tree
Hide file tree
Showing 53 changed files with 4,380 additions and 4,316 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/library_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow performs static analysis checks.
name: Library format check

on:
pull_request:
push:
branches:
- main

jobs:
format_projects:
# Don't run the nightly build on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
strategy:
matrix:
library:
[
DynamoDbEncryption,
]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: 1
steps:
- name: Support longpaths
run: |
git config --global core.longpaths true
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Dafny
uses: dafny-lang/setup-dafny-action@v1.7.0
with:
dafny-version: ${{ '4.2.0' }}

- name: Check format of ${{ matrix.library }} Dafny code
working-directory: ./${{ matrix.library }}
run: |
# This works because `node` is installed by default on GHA runners
CORES=$(node -e 'console.log(os.cpus().length)')
make format_dafny-check
Loading

0 comments on commit dfc0dbd

Please sign in to comment.