Skip to content

Avoid stashing

Avoid stashing #35

name: YAPF Google Chromium Style Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
name: "CI setup"
strategy:
fail-fast: false
matrix:
python-version: [3.12]
os: [ubuntu-latest]
runs-on: "${{ matrix.os }}"
defaults:
run:
shell: "bash -l {0}"
steps:
- uses: actions/checkout@v3
- name: Set up micromamba
uses: mamba-org/provision-with-micromamba@v15
with:
environment-name: Zooniverse
environment-file: dev_environment.yml
cache-env: true
cache-downloads: true
- name: Run YAPF code style check
run: |
yapf -d ./*.py --style=.style.yapf 2>&1