Skip to content

CF Metrics, Tests, and Fixes #90

CF Metrics, Tests, and Fixes

CF Metrics, Tests, and Fixes #90

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [
ubuntu-latest,
macos-latest,
windows-latest,
]
toolchain: [
stable,
]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust Toolchain
run: |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
rustup default ${{ matrix.toolchain }}
- name: NodeJS Setup
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
cache-dependency-path: ts/sbd-server/package-lock.json
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install vcpkg Packages
if: matrix.os == 'windows-latest'
uses: johnwason/vcpkg-action@v6
id: vcpkg
with:
triplet: x64-windows-release
token: ${{ github.token }}
manifest-dir: ${{ github.workspace }}/.github/manifest
github-binarycache: true
- name: Test Windows
if: matrix.os == 'windows-latest'
env:
RUST_BACKTRACE: 1
run: |-
$env:SODIUM_LIB_DIR="$(pwd)\vcpkg\packages\libsodium_x64-windows-release\lib"
make test
- name: Test
if: matrix.os != 'windows-latest'
env:
RUST_BACKTRACE: 1
run: make test
- name: Cf Test
if: matrix.os == 'ubuntu-latest'
run: make cf-test