From f68c13f57ffb6f06492adb5427deab8911b18e8d Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Tue, 1 Dec 2020 19:33:59 -0700 Subject: [PATCH] appmgr: remove github action --- appmgr/.github/workflows/rust.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 appmgr/.github/workflows/rust.yml diff --git a/appmgr/.github/workflows/rust.yml b/appmgr/.github/workflows/rust.yml deleted file mode 100644 index 9ebd328dd..000000000 --- a/appmgr/.github/workflows/rust.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Rust - -on: [push] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: Cache .cargo - uses: actions/cache@v1 - with: - path: ~/.cargo - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - ${{ runner.os }}-cargo- - - name: Cache target release directory - uses: actions/cache@v1 - with: - path: target/release - key: ${{ runner.os }}-target-release-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-target-release-${{ hashFiles('**/Cargo.lock') }} - ${{ runner.os }}-target-release- - - name: Check - run: cargo check - - name: Test - run: cargo test --release