diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8139a93 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: daily + - package-ecosystem: cargo + directory: / + schedule: + interval: daily + ignore: + - dependency-name: "*" + # patch and minor updates don't matter for libraries + # remove this ignore rule if your package has binaries + update-types: + - "version-update:semver-patch" + - "version-update:semver-minor" diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 81c3a01..560e9e2 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -82,7 +82,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: hack - args: --feature-powerset check --all-targets + args: --feature-powerset check --lib --tests msrv: runs-on: ubuntu-latest # we use a matrix here just because env can't be used in job names diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index 3e3a9d3..219a288 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -4,7 +4,7 @@ on: pull_request: schedule: - cron: '7 7 * * *' -name: cargo test (rolling) +name: rolling jobs: # https://twitter.com/mycoliza/status/1571295690063753218 nightly: