From 08333a61697fcffc677acb224c901d7ea24b0922 Mon Sep 17 00:00:00 2001 From: Joannis Orlandos Date: Wed, 15 Feb 2023 21:39:09 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 56f728f..6b80a88 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ encryption](https://docs.microsoft.com/en-us/openspecs/office_file_formats/ms-of Automatically generated documentation is available on [our GitHub Pages](https://coreoffice.github.io/CoreXLSX/). +[Join our Discord](https://discord.gg/H6799jh) for any questions and friendly banter. + ## Example To run the example project, clone the repo, and run `pod install` from the From d60f371bee63a072a007d15a6f464e7683d073a3 Mon Sep 17 00:00:00 2001 From: Joannis Orlandos Date: Wed, 15 Feb 2023 21:53:25 +0100 Subject: [PATCH 2/3] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index a81ec9b..e907480 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug report about: Create a report to help us improve title: '' labels: '' -assignees: MaxDesiatov +assignees: Joannis --- From d66d4560860e12b1c042afd538fcc512c938749b Mon Sep 17 00:00:00 2001 From: Joannis Orlandos Date: Fri, 24 Feb 2023 00:21:08 +0100 Subject: [PATCH 3/3] Revert "Remove Windows builds from `test.yml` matrix" This reverts commit 805101e2ef5245c1bc0158ac1cef81643326ed77. --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a918736..249c7b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,3 +79,25 @@ jobs: - uses: actions/checkout@v2 - name: Run tests run: swift test --enable-test-discovery + + windows_build: + strategy: + matrix: + swift: + - "5.5" + - "5.6" + + runs-on: windows-2019 + + steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - uses: actions/checkout@v2 + - uses: MaxDesiatov/swift-windows-action@v1 + with: + shell-action: swift build + swift-version: ${{ matrix.swift }} + - name: Run tests + run: swift test --enable-test-discovery