-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update ci config and add dependabot (#36)
* ci: update ci config * ci: add dependabot
- Loading branch information
1 parent
ceab0a1
commit edab43f
Showing
2 changed files
with
28 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
# weekly, monthly | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
name: CI | ||
# Run on main, tags, or any pull request | ||
# Run on master, tags, or any pull request | ||
on: | ||
schedule: | ||
- cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST) | ||
push: | ||
branches: [main] | ||
tags: ["*"] | ||
branches: [master] | ||
tags: ['*'] | ||
pull_request: | ||
workflow_dispatch: | ||
concurrency: | ||
# Skip intermediate builds: always. | ||
# Cancel intermediate builds: only if it is a pull request build. | ||
|
@@ -16,57 +15,41 @@ jobs: | |
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created | ||
actions: write | ||
contents: read | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- "1.0" # LTS | ||
- "1" # Latest Release | ||
- 'lts' | ||
- '1' # Latest Release | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- macos-13 # Intel | ||
- windows-latest | ||
arch: | ||
- x64 | ||
- x86 | ||
exclude: | ||
# Test 32-bit only on Linux | ||
- os: macOS-latest | ||
- os: macos-13 | ||
arch: x86 | ||
- os: windows-latest | ||
arch: x86 | ||
include: | ||
# Add specific version used to run the reference tests. | ||
# Must be kept in sync with version check in `test/runtests.jl`, | ||
# and with the branch protection rules on the repository which | ||
# require this specific job to pass on all PRs | ||
# (see Settings > Branches > Branch protection rules). | ||
- os: ubuntu-latest | ||
version: 1.7.2 | ||
arch: x64 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}- | ||
${{ runner.os }}-${{ matrix.arch }}-test- | ||
${{ runner.os }}-${{ matrix.arch }}- | ||
${{ runner.os }}- | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- run: | | ||
git config --global user.name Tester | ||
git config --global user.email [email protected] | ||
- uses: julia-actions/julia-runtest@latest | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
- uses: codecov/codecov-action@v2 | ||
- uses: codecov/codecov-action@v5 | ||
with: | ||
files: lcov.info | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: false |