docker-restic-cron/.github/workflows/tests.yml
dependabot[bot] ed002a7d07
Bump actions/setup-python from 2.2.2 to 4.5.0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.2.2 to 4.5.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2.2.2...v4.5.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-01 16:01:36 +00:00

31 lines
478 B
YAML

---
name: tests
"on":
push:
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run base tests
run: make test-x86
- name: Run s3 tests
run: make test-s3-x86
- name: Setup python
uses: actions/setup-python@v4.5.0
- name: Run pre-commit hooks
run: |
pip install pre-commit
make check