Skip to content

add option to disable warning #116

add option to disable warning

add option to disable warning #116

Workflow file for this run

name: ARM64 Tests
on:
push:
branches: master
pull_request:
jobs:
build:
runs-on: [self-hosted, linux, ARM64]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
6.0.x
- name: Create virtualenv
run: |
virtualenv -p python3 venv
- name: Install dependencies
run: |
source venv/bin/activate
python -m pip install --upgrade pip
pip install pytest cffi
# Assumes recent Mono
- name: Build
run: |
source venv/bin/activate
pip install -e .
- name: Test with pytest
run: |
source venv/bin/activate
pytest