Skip to content

Commit

Permalink
Add toolchain file
Browse files Browse the repository at this point in the history
  • Loading branch information
rcorre committed Nov 21, 2024
1 parent a865553 commit f60b800
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -16,11 +22,10 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: linux
name: ${{ matrix.os }}
path: target/release/pbls

# publish:
# name: Publish
# needs: [build]
# runs-on: ubuntu-latest
# steps:
Expand Down
4 changes: 4 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[toolchain]
channel = "stable"
components = ["rustfmt", "rust-src", "clippy"]

0 comments on commit f60b800

Please sign in to comment.