Skip to content

Commit 37359e9

Browse files
authored
Merge pull request #1 from pytest-dev/gha
Github Actions
2 parents a54ae49 + d269ab7 commit 37359e9

File tree

5 files changed

+1396
-67
lines changed

5 files changed

+1396
-67
lines changed

.github/workflows/tests.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: tests
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
tests:
9+
name: ${{ matrix.python }}
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
python:
15+
- '3.12'
16+
- '3.11'
17+
- '3.10'
18+
- '3.9'
19+
- '3.8'
20+
steps:
21+
- uses: actions/checkout@v3
22+
- name: Install Poetry
23+
uses: snok/install-poetry@v1
24+
- uses: actions/setup-python@v3
25+
with:
26+
python-version: ${{ matrix.python }}
27+
cache: 'poetry'
28+
- run: poetry install
29+
- run: poetry run pytest

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ htmlcov
88
build
99
dist
1010
.vscode
11-
poetry.lock

.gitlab-ci.yml

-66
This file was deleted.

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Versions follow [Semantic Versioning](https://semver.org/>) (<major>.<minor>.<pa
1010
### Changed
1111

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

1415
## [0.0.9] - 2024-03-30
1516

0 commit comments

Comments
 (0)