diff --git a/.github/workflows/backend.yaml b/.github/workflows/backend.yaml index 810f529..1182bbc 100644 --- a/.github/workflows/backend.yaml +++ b/.github/workflows/backend.yaml @@ -27,9 +27,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@1.66 - with: - components: clippy, rustfmt - - run: cd actix-api && cargo clippy -- --deny warnings - - run: cd actix-api && cargo fmt --check - - run: cd actix-api && cargo test \ No newline at end of file + - run: make test \ No newline at end of file diff --git a/docker/Dockerfile.actix b/docker/Dockerfile.actix index 0334305..934ddbb 100644 --- a/docker/Dockerfile.actix +++ b/docker/Dockerfile.actix @@ -1,4 +1,4 @@ -FROM rust:1.70-slim-bullseye +FROM rust:1.74-slim-bullseye RUN apt-get --yes update && apt-get --yes install curl git pkg-config libssl-dev RUN curl https://github.com/amacneil/dbmate/releases/download/v2.4.0/dbmate-linux-amd64 -L -o /usr/bin/dbmate && chmod +x /usr/bin/dbmate