From be1cbaa458194b305b171e4ff6667509bb029a23 Mon Sep 17 00:00:00 2001 From: Pierre Martinon Date: Fri, 18 Oct 2024 11:29:59 +0200 Subject: [PATCH] enable windows in ci (#313) * enable windows in ci * minimalstyle for formatter --- .github/workflows/CI.yml | 1 + .github/workflows/Formatter.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 30bc9d4..c172113 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,6 +16,7 @@ jobs: - '1.10' os: - ubuntu-latest + - windows-latest arch: - x64 steps: diff --git a/.github/workflows/Formatter.yml b/.github/workflows/Formatter.yml index 7b2299e..f0324aa 100644 --- a/.github/workflows/Formatter.yml +++ b/.github/workflows/Formatter.yml @@ -17,7 +17,7 @@ jobs: - name: Install JuliaFormatter and format run: | julia -e 'import Pkg; Pkg.add("JuliaFormatter")' - julia -e 'using JuliaFormatter; format(".", BlueStyle())' + julia -e 'using JuliaFormatter; format(".", MinimalStyle())' # https://github.com/marketplace/actions/create-pull-request # https://github.com/peter-evans/create-pull-request#reference-example - name: Create Pull Request