diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-11 13:53:08 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-11 13:53:08 +0200 |
commit | 8651f1d8f196a61aff1b4eef0b475649b2c58444 (patch) | |
tree | 2d40280e223612f87e30d6c976493fd46efe8e0e /.github | |
parent | 3f34ffcafce93a057ec21033be262a6fa1933d4f (diff) | |
download | planetwars.dev-8651f1d8f196a61aff1b4eef0b475649b2c58444.tar.xz planetwars.dev-8651f1d8f196a61aff1b4eef0b475649b2c58444.zip |
CI: skip installing diesel-cli if already cached
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust-tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/rust-tests.yml index 94b98ab..b410c01 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/rust-tests.yml @@ -43,7 +43,7 @@ jobs: - name: Setup tests run: | docker pull python:3.10-slim-buster - cargo install diesel_cli --version ^1.4 + cargo install diesel_cli --version ^1.4 || true cd planetwars-server diesel migration run --locked-schema env: |