From e0bc030695651db08fc493ceb275ae6280175f3f Mon Sep 17 00:00:00 2001 From: JamesWrigley Date: Mon, 8 Jul 2024 20:11:21 +0200 Subject: [PATCH] Add nightly to the CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86bfff5..f9a85e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,5 @@ name: CI + env: JULIA_NUM_THREADS: 2 on: @@ -9,6 +10,7 @@ on: branches: - master tags: '*' + jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} @@ -18,6 +20,7 @@ jobs: matrix: version: - '1' # Current stable version + - 'nightly' os: - ubuntu-latest - windows-latest @@ -36,6 +39,7 @@ jobs: - os: ubuntu-latest arch: x64 version: '1.3' + steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 @@ -59,6 +63,7 @@ jobs: with: file: lcov.info token: ${{ secrets.CODECOV_TOKEN }} + docs: name: Documentation runs-on: ubuntu-latest