|
|
|
@ -12,14 +12,10 @@ jobs: |
|
|
|
proxy_tests: |
|
|
|
name: Proxy Tests |
|
|
|
runs-on: ubuntu-latest |
|
|
|
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'safe to test') |
|
|
|
if: (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'safe to test')) && github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- uses: actions-rs/toolchain@v1 |
|
|
|
with: |
|
|
|
profile: minimal |
|
|
|
toolchain: stable |
|
|
|
override: true |
|
|
|
- uses: actions/checkout@v4 |
|
|
|
- uses: dtolnay/rust-toolchain@stable |
|
|
|
- name: Populate .env |
|
|
|
env: |
|
|
|
DOTENV: ${{ secrets.DOTENV }} |
|
|
|
|