diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 0000000..6231dc3 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Runic 1.2.0 formatting +e7920eacd87d36d67d887f57f9eb2e342dff7879 diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d60f070 --- /dev/null +++ b/.github/dependabot.yml @@ -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" diff --git a/.github/workflows/ci.yml b/.github/workflows/CI.yml similarity index 73% rename from .github/workflows/ci.yml rename to .github/workflows/CI.yml index 816b785..f982498 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/CI.yml @@ -5,7 +5,7 @@ on: branches: - 'master' - 'release-' - tags: '*' + tags: ['*'] pull_request: jobs: @@ -16,6 +16,7 @@ jobs: matrix: version: - '1.6' + - '1.10' - '1' - 'nightly' os: @@ -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 }} diff --git a/.github/workflows/Check.yml b/.github/workflows/Check.yml new file mode 100644 index 0000000..37742fb --- /dev/null +++ b/.github/workflows/Check.yml @@ -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'