Update all non-major dependencies #131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
name: Tests | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
dnf install -y pre-commit git | |
- name: Configure git | |
run: | | |
git config --global user.name Tests | |
git config --global user.email [email protected] | |
git config --global init.defaultBranch main | |
git config --global --add safe.directory $PWD | |
- name: Run unit tests with Tox | |
run: tox -e py -s |