We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26122d0 commit 560b007Copy full SHA for 560b007
.github/workflows/ci.yml
@@ -4,6 +4,9 @@ on:
4
pull_request:
5
branches:
6
- main
7
+ push:
8
+ branches:
9
+ - main
10
11
jobs:
12
linux:
@@ -30,10 +33,8 @@ jobs:
30
33
restore-keys: |
31
34
${{ runner.os }}-py${{ matrix.python-version }}-
32
35
- name: Install Rust
- uses: actions-rs/toolchain@v1
- with:
- toolchain: ${{ matrix.rust-version }}
36
- profile: minimal
+ run: |
37
+ rustup toolchain install --profile minimal ${{ matrix.rust-version }}
38
- name: Install dependencies
39
run: |
40
rustup default ${{ matrix.rust-version }}
0 commit comments