Skip to content

chore(sdk): test using utf8 chars #311

chore(sdk): test using utf8 chars

chore(sdk): test using utf8 chars #311

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
- labeled
push:
branches:
- main
jobs:
tests:
name: Unit tests
if: |
github.event_name != 'pull_request' ||
github.event.pull_request.author_association == 'COLLABORATOR' ||
github.event.pull_request.author_association == 'MEMBER' ||
github.event.pull_request.user.login == 'dependabot[bot]' ||
contains(github.event.pull_request.labels.*.name, 'safe to test')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Ninja (Cmake build generator)
uses: seanmiddleditch/gha-setup-ninja@master
- name: Setup MSVC toolchain on Windows
if: matrix.os == 'windows-latest'
uses: ilammy/msvc-dev-cmd@v1
- name: Print make version and path
run: |
which make
make --version
- name: Run tests
run: make test