Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
ci: use stable Rust 1.80.0
Browse files Browse the repository at this point in the history
  • Loading branch information
insertish committed Jul 31, 2024
1 parent dc1974d commit aaf9085
Show file tree
Hide file tree
Showing 3 changed files with 674 additions and 60 deletions.
26 changes: 8 additions & 18 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Rust build and test

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

env:
CARGO_TERM_COLOR: always
Expand All @@ -15,19 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Setup Rust toolchain (v1.80.0)
uses: dtolnay/[email protected]
- name: Run build
run: cargo build
- name: Run test
run: cargo test
Loading

0 comments on commit aaf9085

Please sign in to comment.