Skip to content

Updated test name and readme to correctly supply test badge. #1

Updated test name and readme to correctly supply test badge.

Updated test name and readme to correctly supply test badge. #1

name: Tests Rust Doc String on Multiple OS then Publish
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-tests:
name: Unit Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test