Skip to content

build(deps): bump openssl from 0.10.70 to 0.10.72 #103

build(deps): bump openssl from 0.10.70 to 0.10.72

build(deps): bump openssl from 0.10.70 to 0.10.72 #103

Workflow file for this run

name: CI-nebula
on:
push:
branches: [main]
pull_request:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up toolchain for stable rust
uses: dtolnay/rust-toolchain@stable
- name: Install xmlsec1
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- uses: Swatinem/rust-cache@v2
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: style-check
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --all-targets --all-features -- -D warnings -A dead_code
- name: Run tests
run: cargo test --all --verbose