diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8853573..7346003 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,6 @@ jobs: - name: Start MySQL run: sudo systemctl start mysql.service - uses: actions/cache@v4 - id: cache with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }} @@ -36,9 +35,6 @@ jobs: run: | pip install -U pip poetry poetry config virtualenvs.create false - - name: Install Dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: make deps - name: CI env: MYSQL_PASS: root @@ -47,4 +43,4 @@ jobs: POSTGRES_PASS: 123456 POSTGRES_HOST: 127.0.0.1 POSTGRES_PORT: 5432 - run: make _ci + run: make ci diff --git a/Makefile b/Makefile index 0f05d70..ff10279 100644 --- a/Makefile +++ b/Makefile @@ -44,5 +44,4 @@ testall: deps _test_all build: deps @poetry build -_ci: _check _testall -ci: deps _ci +ci: deps _check _testall