Skip to content

Commit

Permalink
Merge pull request #1 from pytest-dev/gha
Browse files Browse the repository at this point in the history
Github Actions
  • Loading branch information
azmeuk authored Apr 12, 2024
2 parents a54ae49 + d269ab7 commit 37359e9
Show file tree
Hide file tree
Showing 5 changed files with 1,396 additions and 67 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: tests
on:
push:
pull_request:

jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.12'
- '3.11'
- '3.10'
- '3.9'
- '3.8'
steps:
- uses: actions/checkout@v3
- name: Install Poetry
uses: snok/install-poetry@v1
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
cache: 'poetry'
- run: poetry install
- run: poetry run pytest
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ htmlcov
build
dist
.vscode
poetry.lock
66 changes: 0 additions & 66 deletions .gitlab-ci.yml

This file was deleted.

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Versions follow [Semantic Versioning](https://semver.org/>) (<major>.<minor>.<pa
### Changed

- Move the repository to https://github.com/pytest-dev/pytest-iam
- GHA support #1

## [0.0.9] - 2024-03-30

Expand Down
Loading

0 comments on commit 37359e9

Please sign in to comment.