From 6bebd7167950fd11ac7b8c5d5187b42a67dde70d Mon Sep 17 00:00:00 2001 From: Matt Brzezinski Date: Fri, 13 Aug 2021 13:38:36 -0500 Subject: [PATCH] Added formatting for auto-generation --- .github/workflows/update_apis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_apis.yml b/.github/workflows/update_apis.yml index 2ee76262cf..facb78d577 100644 --- a/.github/workflows/update_apis.yml +++ b/.github/workflows/update_apis.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - julia-version: [1] + julia-version: [1] julia-arch: [x86] os: [ubuntu-latest] steps: @@ -22,6 +22,10 @@ jobs: run: julia --project -e 'using AWS; AWS.AWSMetadata.parse_aws_metadata();' env: GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} + - name: FormatCode + run: | + julia -e 'using Pkg; Pkg.add("JuliaFormatter")' + julia -e 'using JuliaFormatter; format(".", BlueStyle(); verbose=true)' - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: