Skip to content

Updates base64ct and switches to using tempfile #24

Updates base64ct and switches to using tempfile

Updates base64ct and switches to using tempfile #24

Workflow file for this run

name: Build and Run
on:
push
jobs:
rust-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build & Test
run: |
cargo build --release
cargo test
rust-stable-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build & Test
run: |
cargo build --release
cargo test
rust-msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.81.0
- name: Build & Test
run: |
cargo build --release
cargo test