From 0aa5dfbb65c59bc4a1961ab69c6b81a6fe1ee485 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Sat, 23 Dec 2023 22:29:35 -0500 Subject: [PATCH] =?UTF-8?q?feat:=20Remove=20build.yml=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 568e6db..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -# Test the builds for the template - -name: "Build Template" -on: - workflow_dispatch: - schedule: - # Run once a week at 6pm on Saturday (UTC) - - cron: "0 18 * * 6" - push: - paths-ignore: - - "**.md" - -jobs: - build: - runs-on: ubuntu-latest - env: - PROJECT_NAME: my-project - steps: - - uses: actions/checkout@v3 - - uses: cargo-generate/cargo-generate-action@v0.17.5 - with: - name: ${{ env.PROJECT_NAME }} - - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - # We need to move the generated project to a temp folder, away from the template project - # otherwise `cargo` runs would fail . - # see https://github.com/rust-lang/cargo/issues/9922 - - run: | - mv $PROJECT_NAME ${{ runner.temp }}/ - cd ${{ runner.temp }}/$PROJECT_NAME - cargo check