-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (45 loc) · 1.06 KB
/
build-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches: [ master ]
paths-ignore:
- 'CHANGELOG.md'
pull_request:
branches: [ master ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
-
name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
-
name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
-
name: Install dependencies
run: poetry install
-
name: Test with pytest
run: poetry run pytest tests/
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Release
run: |
npm ci
npx semantic-release