Skip to content

add link

add link #27

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests-ubuntu:
name: Tests (Ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.12'
architecture: 'x64'
- name: Install requirements
run: |
pip3 install pytest numpy scipy numba cirq-core
pip3 install -r cellular_automata/requirements.txt
- name: Run tests
run: pytest .