Browse Source

Misc CI updates

pull/8/head
Fredrik Ekre 12 months ago
parent
commit
b79d8154a9
No known key found for this signature in database
GPG Key ID: DE82E6D5E364C0A2
  1. 2
      .git-blame-ignore-revs
  2. 7
      .github/dependabot.yml
  3. 13
      .github/workflows/CI.yml
  4. 23
      .github/workflows/Check.yml

2
.git-blame-ignore-revs

@ -0,0 +1,2 @@ @@ -0,0 +1,2 @@
# Runic 1.2.0 formatting
e7920eacd87d36d67d887f57f9eb2e342dff7879

7
.github/dependabot.yml

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
# 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:
interval: "monthly"

13
.github/workflows/ci.yml → .github/workflows/CI.yml

@ -5,7 +5,7 @@ on: @@ -5,7 +5,7 @@ on:
branches:
- 'master'
- 'release-'
tags: '*'
tags: ['*']
pull_request:
jobs:
@ -16,6 +16,7 @@ jobs: @@ -16,6 +16,7 @@ jobs:
matrix:
version:
- '1.6'
- '1.10'
- '1'
- 'nightly'
os:
@ -30,9 +31,13 @@ jobs: @@ -30,9 +31,13 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/cache@v2
- 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
files: lcov.info
plugins: noop
disable_search: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

23
.github/workflows/Check.yml

@ -0,0 +1,23 @@ @@ -0,0 +1,23 @@
---
name: Check
on:
push:
branches:
- 'master'
- 'release-'
tags:
- '*'
pull_request:
jobs:
runic:
name: Runic formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.11'
- uses: julia-actions/cache@v2
- uses: fredrikekre/runic-action@v1
with:
version: '1.2'
Loading…
Cancel
Save