From 43506bdf470d13139ba8f1c46a501aff77dd24eb Mon Sep 17 00:00:00 2001 From: Nathan Daly Date: Thu, 17 Oct 2024 17:12:09 -0600 Subject: [PATCH 1/2] Update CI.yml to 1.11 release, add nightly --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 83535ba..49e8bd5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,8 @@ jobs: - '1.8' - '1.9' - '1.10' - - '^1.11.0-beta2' + - '1.11' + - 'nightly' os: - ubuntu-latest - windows-latest From d7919f19546fe37d88b3c31562a945a074ad7409 Mon Sep 17 00:00:00 2001 From: Nathan Daly Date: Thu, 17 Oct 2024 17:16:53 -0600 Subject: [PATCH 2/2] Update CI.yml: don't do all tests twice on PRs We only need to build for `push:` on master/main and tags/releases. Copied from https://github.com/JuliaLang/Example.jl/blob/master/.github/workflows/ci.yml --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 49e8bd5..6a8bf82 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,7 +1,9 @@ name: CI on: - - push - - pull_request + push: + branches: [main, master] + tags: ["*"] + pull_request: jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}