You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Downloads a copy of the code in your repository before running CI tests
43
-
- name: Check out repository code
44
-
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
45
-
# This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools).
46
-
# You should use the checkout action any time your workflow will run against the repository's code.
47
-
uses: actions/checkout@v3
48
-
49
-
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
50
-
- name: Install the Rust toolchain
51
-
uses: dtolnay/rust-toolchain@stable
52
-
53
-
# This GitHub Action caches the Rust toolchain between workflow runs. It is designed for one-line concise usage and good defaults.
38
+
- uses: actions/checkout@v3
39
+
- uses: dtolnay/rust-toolchain@stable
54
40
- uses: Swatinem/rust-cache@v2
55
41
with:
56
-
# An additional cache key that is added alongside the automatic `job`-based cache key and can be used to further differentiate jobs. default: empty
57
42
key: sqlx-${{ env.SQLX_VERSION }}
58
-
59
43
- name: Install sqlx-cli
60
44
run:
61
45
cargo install sqlx-cli
62
46
--version=${{ env.SQLX_VERSION }}
63
47
--features ${{ env.SQLX_FEATURES }}
64
48
--no-default-features
65
49
--locked
66
-
# The --locked flag can be used to force Cargo to use the packaged Cargo.lock file if it is available.
67
-
# This may be useful for ensuring reproducible builds, to use the exact same set of dependencies that were available when the package was published.
68
-
# It may also be useful if a newer version of a dependency is published that no longer builds on your system, or has other problems
0 commit comments