-
Notifications
You must be signed in to change notification settings - Fork 12
34 lines (30 loc) · 775 Bytes
/
Copy pathci.yml
File metadata and controls
34 lines (30 loc) · 775 Bytes
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
name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- run: python -m pip install -e '.[dev]'
- run: ruff check .
- run: pytest --cov=domain_oss --cov-report=term-missing
terraform-provider:
runs-on: ubuntu-latest
defaults:
run:
working-directory: integrations/terraform-provider-domainoss
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: integrations/terraform-provider-domainoss/go.sum
- run: go test ./...