diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c23c4c8d..9e6cccea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,8 @@ on: push: branches: - main + schedule: + - cron: '10 12 * * 5' concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml deleted file mode 100644 index ede28eae..00000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Weekly - -on: - schedule: - - cron: '10 12 * * 5' - -jobs: - weekly: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - rust: ["1.74", stable] - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{matrix.rust}} - - run: cargo build --workspace