diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b4b3fa4..a048195 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,8 @@ updates: # directory: "/" # schedule: # interval: daily - - package-ecosystem: 'github-actions' - directory: '/' + - package-ecosystem: "github-actions" + directory: "/" schedule: # Check for updates once a week - interval: 'weekly' + interval: "weekly" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4141916..d51dab4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,12 +2,12 @@ name: CI on: push: branches: - - '*' + - "*" pull_request: branches: - - '*' + - "*" schedule: - - cron: '0 0 * * *' # Daily “At 00:00” UTC + - cron: "0 0 * * *" # Daily “At 00:00” UTC workflow_dispatch: # allows you to trigger the workflow run manually jobs: @@ -22,8 +22,8 @@ jobs: strategy: fail-fast: false matrix: - os: ['ubuntu-latest'] - python-version: ['3.7', '3.8', '3.9'] + os: ["ubuntu-latest"] + python-version: ["3.7", "3.8", "3.9"] steps: - name: Cancel previous runs uses: styfle/cancel-workflow-action@0.11.0 @@ -34,7 +34,7 @@ jobs: with: channels: conda-forge channel-priority: strict - mamba-version: '*' + mamba-version: "*" activate-environment: ldcpy # Defined in ci/environment.yml auto-update-conda: false python-version: ${{ matrix.python-version }} @@ -76,7 +76,7 @@ jobs: with: channels: conda-forge channel-priority: strict - mamba-version: '*' + mamba-version: "*" activate-environment: ldcpy # Defined in ci/environment.yml auto-update-conda: false python-version: 3.9 diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 6cc100a..4f76f14 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -2,9 +2,9 @@ name: code-style on: push: - branches: '*' + branches: "*" pull_request: - branches: '*' + branches: "*" jobs: linting: diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 87552c7..1ce772a 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: "3.x" - name: Install dependencies run: | python -m pip install --upgrade pip