Skip to content

Merge pull request #1 from gonuke/first_pass #1

Merge pull request #1 from gonuke/first_pass

Merge pull request #1 from gonuke/first_pass #1

Workflow file for this run

name: Sample CI
on:
push:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Apt dependencies
shell: bash
run: |
sudo apt -y update
sudo apt install -y python3-dev
- name: Python dependencies
shell: bash
run: |
pip3 install numpy \
pytest
- name: Test
shell: bash
run: |
pytest -v .