Skip to content

Bump openssl from 0.10.54 to 0.10.55 #437

Bump openssl from 0.10.54 to 0.10.55

Bump openssl from 0.10.54 to 0.10.55 #437

Workflow file for this run

name: Build
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Cache cargo
id: cache-cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
- name: Run linter
run: cargo clippy --all-features -- -D warnings
- name: Run tests
env:
TEST_BACA_PASSWORD: ${{ secrets.TEST_BACA_PASSWORD }}
TEST_BACA_LOGIN: ${{ secrets.TEST_BACA_LOGIN }}
TEST_BACA_HOST: ${{ secrets.TEST_BACA_HOST }}
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }}
run: cargo test -- --include-ignored
formatting:
name: Formatting
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt --all -- --check