Skip to content

fix: fixing the tests to adapt to not having the attributes #465

fix: fixing the tests to adapt to not having the attributes

fix: fixing the tests to adapt to not having the attributes #465

Workflow file for this run

name: Check format
on: push
jobs:
check-format:
runs-on: self-hosted
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.6-0'
micromamba-binary-path: ${{ runner.temp }}/bin/micromamba
environment-file: conda_environment.yaml
environment-name: copernicusmarine
condarc-file: .condarc
cache-environment: true
post-cleanup: 'all'
- name: Poetry install
run: poetry install
shell: micromamba-shell {0}
- name: Check format
run: make check-format
shell: micromamba-shell {0}