From 063f1f4f93d0570ec8c2725d49a88bef05b672d6 Mon Sep 17 00:00:00 2001 From: Anthony Oteri Date: Tue, 26 Sep 2023 13:26:52 -0400 Subject: [PATCH 1/3] Add FUNDING.yml --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..3bc33d5 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: anthonyoteri From e5f2a9f54c31ce1f8e864428cf09cd1ab0a3301d Mon Sep 17 00:00:00 2001 From: Anthony Oteri Date: Tue, 26 Sep 2023 13:27:11 -0400 Subject: [PATCH 2/3] Add dependabot integrations for github-actions --- .github/dependabot.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5c326a0..1116676 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,11 @@ version: 2 updates: - package-ecosystem: "cargo" - directory: / + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "daily" From de72ec53aad83e67a6a9d0f705dc9896e80722d1 Mon Sep 17 00:00:00 2001 From: Anthony Oteri Date: Tue, 26 Sep 2023 13:27:37 -0400 Subject: [PATCH 3/3] Test on Linux/Mac/Windows --- .github/workflows/rust.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0c15996..c4784fe 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -33,7 +33,10 @@ jobs: test: name: Run unit and integration tests - runs-on: ubuntu-latest + strategy: + matrix: + platform: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.platform }} permissions: contents: read steps: