We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8303298 commit cf8aaa6Copy full SHA for cf8aaa6
.github/workflows/ci.yml
@@ -39,15 +39,10 @@ jobs:
39
steps:
40
- uses: actions/checkout@v2
41
42
- - name: Cache cargo registry
43
- uses: actions/cache@v2
+ - name: Cache dependencies
+ uses: Swatinem/rust-cache@v1.3.0
44
with:
45
- path: |
46
- ~/.cargo/git
47
- ~/.cargo/registry/cache
48
- ~/.cargo/registry/index
49
- ./atcoder-problems-backend/target
50
- key: ${{ runner.os }}-cargo-${{ hashFiles('atcoder-problems-backend/Cargo.lock') }}
+ working-directory: ./atcoder-problems-backend
51
52
- name: Setup Postgresql
53
run: psql ${SQL_URL} < ../config/database-definition.sql
0 commit comments