We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f3f18 commit 8b674a8Copy full SHA for 8b674a8
.github/workflows/ci.yml
@@ -1,5 +1,9 @@
1
name: ci
2
-on: [push, pull_request]
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
# https://stackoverflow.com/questions/57612428/cloning-private-github-repository-within-organisation-in-actions
9
# I created a token with private repo access in my account that I set in the rust-bfield repo vault
@@ -25,6 +29,10 @@ jobs:
25
29
rust-version: ${{ matrix.rust }}
26
30
- name: Build System Info
27
31
run: rustc --version
32
+ - name: create SSH key
33
+ uses: webfactory/ssh-agent@v0.2.0
34
+ with:
35
+ ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
28
36
- name: Run tests
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments