Skip to content

Add age encryption support #676

Add age encryption support

Add age encryption support #676

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [ubuntu, macos, windows]
include:
- build: ubuntu
os: ubuntu-latest
toolchain: stable
- build: macos
os: macos-latest
toolchain: stable
- build: windows
os: windows-latest
toolchain: stable
steps:
- uses: actions/checkout@v4
- name: Install Rust (rustup)
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
rustup component add clippy
- name: Check warnings
run: cargo clippy --all-features --examples --tests -- -Dwarnings
- name: Run tests
run: cargo test
- name: Run tests (all features)
run: cargo test --all-features
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (rustup)
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- name: Check format
run: cargo fmt --all -- --check