Skip to content

Fix CD

Fix CD #24

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
# Cargo check.
check:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all
# Cargo test.
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
env:
SOCKS5_HOST: ${{ secrets.SOCKS5_HOST }}
SOCKS5_PORT: ${{ secrets.SOCKS5_PORT }}
SOCKS5_USERNAME: ${{ secrets.SOCKS5_USERNAME }}
SOCKS5_PASSWORD: ${{ secrets.SOCKS5_PASSWORD }}
with:
command: test
args: --all
# Cargo fmt and clippy
lints:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all -- -D warnings -A deprecated