From 59327de987f936500522462ccdb0de38e0cf37af Mon Sep 17 00:00:00 2001 From: FujiApple Date: Sun, 30 Jun 2024 15:10:37 +0800 Subject: [PATCH] build: add docker build ci job --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3abfb408..8bb34256 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -179,6 +179,14 @@ jobs: - uses: Swatinem/rust-cache@v2 - run: cargo clippy --workspace --all-features --target ${{ matrix.target }} --tests -- -Dwarnings + build-docker: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: Swatinem/rust-cache@v2 + - name: Build Docker image + run: docker build -t trippy-docker-image . + cargo-deny: runs-on: ubuntu-22.04 steps: