Skip to content

Basic AtomicDict operations #10

Basic AtomicDict operations

Basic AtomicDict operations #10

Workflow file for this run

name: lint
on:
push:
branches: [ "dev" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "nogil-3.9" ]
steps:
- uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: dpdani/setup-python@nogil
with:
python-version: ${{ matrix.python-version }}
- name: check nogil
run: |
python -c "import sys; print(sys.flags.nogil);"
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: black
run: black --check .
- name: lint
run: |
ruff .