Skip to content

Commit

Permalink
chore: add missing toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
SOF3 committed Jan 1, 2024
1 parent 10a18fb commit 146f89d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: default
default: true
components: rustfmt
Expand All @@ -26,6 +27,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: default
default: true
components: clippy
Expand All @@ -50,6 +52,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: default
default: true
- run: cargo build --release
Expand All @@ -60,5 +63,10 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: target/release/lpl
if: matrix.os != 'windows-latest'
if: matrix.os == 'ubuntu-latest'
- uses: actions/upload-artifact@v4
with:
path: target/release/lpl-macos
name: lpl
if: matrix.os == 'macos-latest'

0 comments on commit 146f89d

Please sign in to comment.