diff options
| author | Ellie Huxtable <e@elm.sh> | 2021-04-20 17:07:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 16:07:11 +0000 |
| commit | 34888827f8a06de835cbe5833a06914f28cce514 (patch) | |
| tree | 8b56f20e50065cd2c222d5e8e067ec55cf1947a1 /.github/workflows | |
| parent | Optimise docker (#34) (diff) | |
| download | atuin-34888827f8a06de835cbe5833a06914f28cce514.zip | |
Switch to Warp + SQLx, use async, switch to Rust stable (#36)
* Switch to warp + sql, use async and stable rust
* Update CI to use stable
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5518d905..1a8ac289 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,10 +16,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install latest nightly + - name: Install rust uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true - name: Run cargo build @@ -31,10 +31,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install latest nightly + - name: Install rust uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true - name: Run cargo test @@ -46,10 +46,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install latest nightly + - name: Install latest rust uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true components: clippy @@ -62,10 +62,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install latest nightly + - name: Install latest rust uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true components: rustfmt |
