Skip to content

Trying to see if the runner OS version is causing the segfaults #24

Trying to see if the runner OS version is causing the segfaults

Trying to see if the runner OS version is causing the segfaults #24

Workflow file for this run

name: Test
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: "Check out the repo"
uses: actions/checkout@v3
with:
submodules: true
- name: Fix checkout ownership
run: |
# HACK Workaround for bug:
# https://github.com/actions/runner/issues/2033
mkdir -p /home/runner/work/_temp/_github_home
printf "[safe]\n\tdirectory = /github/workspace" \
> /home/runner/work/_temp/_github_home/.gitconfig
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install system dependencies
run: |
sudo apt update && sudo apt install -y libgl1-mesa-glx
- name: Install nimble packages and dev tools
run: |
pip install -e .[dev]
- name: Run tests
run: |
pytest