LibBotUniversal/.gitea/workflows/tests.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

2023-08-06 20:11:16 +03:00
name: Tests
on:
2023-08-07 12:40:50 +03:00
push:
2023-08-07 12:24:48 +03:00
branches:
2023-08-07 12:40:50 +03:00
- main
2023-08-07 12:21:49 +03:00
tags-ignore:
2023-08-07 12:40:50 +03:00
- v*
pull_request:
2023-08-06 20:11:16 +03:00
jobs:
test:
2024-10-29 17:37:16 +02:00
name: Build and Test
2023-08-06 20:11:16 +03:00
runs-on: ubuntu-latest
2023-08-06 22:11:06 +03:00
container: catthehacker/ubuntu:act-latest
2023-08-06 20:11:16 +03:00
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
2023-08-06 20:11:16 +03:00
steps:
2023-08-06 20:24:16 +03:00
- uses: actions/checkout@v3
2023-08-06 20:11:16 +03:00
- name: Set up Python ${{ matrix.python-version }}
2023-08-06 20:24:16 +03:00
uses: actions/setup-python@v3
2023-08-06 20:11:16 +03:00
with:
python-version: ${{ matrix.python-version }}
2023-08-06 20:24:16 +03:00
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
2023-08-06 20:11:16 +03:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2024-05-26 16:48:19 +03:00
pip install tox tox-gh-actions build
2023-08-06 20:11:16 +03:00
- name: Test with tox
run: tox
2024-05-26 16:48:19 +03:00
- name: Build
run: python -m build
- uses: actions/upload-artifact@v3
2024-05-26 16:43:53 +03:00
with:
name: Artifacts
path: dist/*
2024-10-29 17:37:16 +02:00
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarCloud Scan
2024-10-29 17:55:02 +02:00
uses: https://github.com/SonarSource/sonarcloud-github-action@master
2024-10-29 17:37:16 +02:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}