Update tls-api and thiserror #79
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request] | |
name: CI | |
jobs: | |
build_and_test: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust_version: [default, minimum, beta] | |
fail-fast: false | |
timeout-minutes: 30 | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
# checkout and env setup | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Build the nix shell | |
run: nix develop .#${{ matrix.rust_version }} --command just --version | |
- uses: Swatinem/rust-cache@v2 | |
# run tests | |
- name: Run tests | |
run: nix develop .#${{ matrix.rust_version }} --command just test |