From e53aec331ae81366e36e14c1c881bde3d98859d1 Mon Sep 17 00:00:00 2001 From: Mateusz Baran Date: Fri, 8 Sep 2023 09:57:10 +0200 Subject: [PATCH] Add Julia 1.10-beta to CI, remove nightly --- .github/workflows/ci.yml | 2 +- .github/workflows/nightly.yml | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cabaab2e47..e223f76b6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - julia-version: ["1.6", "1.8", "~1.9.0-0"] + julia-version: ["1.6", "1.9", "~1.10.0-0"] os: [ubuntu-latest, macOS-latest] group: - 'test_manifolds' diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index 46bb83d5d0..0000000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Nightly -on: - pull_request: - -jobs: - test: - name: Julia nightly - ${{ matrix.group }} - ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] - group: - - 'test_manifolds' - - 'test_lie_groups' - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 - with: - version: nightly - arch: x64 - - uses: julia-actions/cache@v1 - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest - env: - PYTHON: "" - MANIFOLDS_TEST_GROUP: ${{ matrix.group }}