Skip to content

Merge pull request #4 from nathanemac/add_libproxtv #4

Merge pull request #4 from nathanemac/add_libproxtv

Merge pull request #4 from nathanemac/add_libproxtv #4

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags: ["*"]
workflow_dispatch:
jobs:
test:
uses: ./.github/workflows/ReusableTest.yml
with:
os: ${{ matrix.os }}
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
allow_failure: ${{ matrix.allow_failure }}
run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
version:
- "1.9"
- "1"
os:
- ubuntu-latest
- macOS-latest
#- windows-latest
arch:
- x64
allow_failure: [false]