summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-20 17:07:11 +0100
committerGitHub <noreply@github.com>2021-04-20 16:07:11 +0000
commit34888827f8a06de835cbe5833a06914f28cce514 (patch)
tree8b56f20e50065cd2c222d5e8e067ec55cf1947a1 /.github
parentf6de558070c4ed4dbecf4bbbf4693e396a5577dc (diff)
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')
-rw-r--r--.github/workflows/rust.yml16
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