Skip to content

Veondor OpenSSL

Veondor OpenSSL #3

Workflow file for this run

name: 🧪 Run Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
name: 🧪 Run Check
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Cache libs
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo
- name: Run Check
run: cargo check --verbose