Skip to content

Add (not yet working) RSA decipher function #8

Add (not yet working) RSA decipher function

Add (not yet working) RSA decipher function #8

Workflow file for this run

name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
name: End-to-end tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build image
run: |
docker buildx build --progress=plain .
licenses:
name: Check licenses
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
name: Install toolchain
with:
toolchain: nightly
override: true
profile: minimal
- name: Install cargo deny
run: cargo install cargo-deny
- name: Check licenses
run: cargo deny check