github workflows: fix typos and grammar

This commit is contained in:
Thomas Waldmann 2025-08-12 11:15:11 +02:00
parent adbad12478
commit f9ec04ddf6
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
3 changed files with 14 additions and 14 deletions

View file

@ -1,5 +1,5 @@
# https://black.readthedocs.io/en/stable/integrations/github_actions.html#usage
# see also what we use locally, requirements.d/codestyle.txt - should be the same version here.
# See also what we use locally in requirements.d/codestyle.txt — this should be the same version here.
name: Lint

View file

@ -1,4 +1,4 @@
# badge: https://github.com/borgbackup/borg/workflows/CI/badge.svg?branch=master
# badge: https://github.com/borgbackup/borg/workflows/CI/badge.svg?branch=1.4-maint
name: CI
@ -97,7 +97,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
# Just fetching one commit is not enough for setuptools-scm, so we fetch all.
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
@ -206,7 +206,7 @@ jobs:
include:
- os: macos-14
python-version: '3.11'
toxenv: py311-none # note: no fuse testing, due to #6099, see also #6196.
toxenv: py311-none # Note: no FUSE testing due to #6099; see also #6196.
env:
# Configure pkg-config to use OpenSSL from Homebrew
@ -219,7 +219,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
# Just fetching one commit is not enough for setuptools-scm, so we fetch all
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
@ -243,21 +243,21 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.d/development.txt
- name: Install borgbackup
- name: Install BorgBackup
env:
# we already have that in the global env, but something is broken and overwrites that.
# so, set it here, again.
# We already have this in the global environment, but something overrides it.
# So set it here again.
PKG_CONFIG_PATH: "/opt/homebrew/opt/openssl@3.0/lib/pkgconfig:$PKG_CONFIG_PATH"
run: |
pip install -ve .
- name: run tox env
- name: Run pytest via tox
env:
# we already have that in the global env, but something is broken and overwrites that.
# so, set it here, again.
# We already have this in the global environment, but something overrides it.
# So set it here again.
PKG_CONFIG_PATH: "/opt/homebrew/opt/openssl@3.0/lib/pkgconfig:$PKG_CONFIG_PATH"
XDISTN: "6"
run: |
# do not use fakeroot, but run as root. avoids the dreaded EISDIR sporadic failures. see #2482.
# Do not use fakeroot; run as root. Avoids the dreaded sporadic EISDIR failures; see #2482.
#sudo -E bash -c "tox -e py"
tox --skip-missing-interpreters
- name: Upload coverage to Codecov
@ -271,7 +271,7 @@ jobs:
windows:
if: false # can be used to temporary disable build
if: false # can be used to temporarily disable the build
runs-on: windows-latest
timeout-minutes: 120
needs: linux

View file

@ -31,7 +31,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
# Just fetching one commit is not enough for setuptools-scm, so we fetch all.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5