Loading .github/dependabot.yml 0 → 100644 +11 −0 Original line number Diff line number Diff line # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "cargo" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly" .github/workflows/ci.yml 0 → 100644 +32 −0 Original line number Diff line number Diff line on: push: branches: - main pull_request: branches: - main schedule: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule - cron: '0 0 * * 0' # at midnight of each sunday name: CI jobs: develop: runs-on: ubuntu-latest strategy: fail-fast: false matrix: toolchain: - 1.66.1 # MSRV - stable - nightly steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.toolchain }} components: rustfmt, clippy - run: cargo fmt --all -- --check - run: cargo clippy -- -D warnings - run: cargo test --all-features Loading
.github/dependabot.yml 0 → 100644 +11 −0 Original line number Diff line number Diff line # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "cargo" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly"
.github/workflows/ci.yml 0 → 100644 +32 −0 Original line number Diff line number Diff line on: push: branches: - main pull_request: branches: - main schedule: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule - cron: '0 0 * * 0' # at midnight of each sunday name: CI jobs: develop: runs-on: ubuntu-latest strategy: fail-fast: false matrix: toolchain: - 1.66.1 # MSRV - stable - nightly steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.toolchain }} components: rustfmt, clippy - run: cargo fmt --all -- --check - run: cargo clippy -- -D warnings - run: cargo test --all-features