diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b1572d7..55e80a1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,10 +1,16 @@ name: CI on: + pull_request: + branches: + - main + - dev + paths-ignore: + - "docs/**" push: branches: - main - tags: ['*'] - pull_request: + paths-ignore: + - "docs/**" workflow_dispatch: concurrency: # Skip intermediate builds: always. @@ -23,8 +29,9 @@ jobs: fail-fast: false matrix: version: - - '1.10' - - 'pre' + - 'lts' # automatically expands to the latest LTS release of Julia + - '1' # automatically expands to the latest stable 1.x release of Julia + - 'pre' # automatically expands to the latest pre-release of Julia os: - ubuntu-latest - macOS-latest