diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 68dbe39..a255bb0 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -6,16 +6,8 @@ on: jobs: CompatHelper: - runs-on: ${{ matrix.os }} - strategy: - matrix: - julia-version: [1.2.0] - julia-arch: [x86] - os: [ubuntu-latest] + runs-on: ubuntu-latest steps: - - uses: julia-actions/setup-julia@latest - with: - version: ${{ matrix.julia-version }} - name: Pkg.add("CompatHelper") run: julia -e 'using Pkg; Pkg.add("CompatHelper")' - name: CompatHelper.main() diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index f49313b..6d2efc1 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -1,9 +1,11 @@ name: TagBot + on: issue_comment: types: - created workflow_dispatch: + jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4990f7a..00d6e2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,5 @@ name: CI + on: pull_request: branches: @@ -7,6 +8,7 @@ on: branches: - master tags: '*' + jobs: test: name: Tests, Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} @@ -17,20 +19,10 @@ jobs: strategy: fail-fast: false matrix: - version: - - '1' - os: [ubuntu-latest, windows-latest, macos-latest] - arch: - - x64 + version: [1.6, 1] + os: [ubuntu-latest, windows-latest, macos-latest] + arch: [x64] steps: - # Cancel ongoing CI test runs if pushing to branch again before the previous tests - # have finished - - name: Cancel ongoing test runs for previous commits - uses: styfle/cancel-workflow-action@0.12.1 - with: - access_token: ${{ github.token }} - - # Do tests - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: