Update GitHub Actions workflow versions #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: grip-on-software/bigboat-python-api | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4.1.4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: "${{ matrix.python }}" | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install -r test-requirements.txt | |
pip install coveralls | |
- name: Unit test and coverage | |
run: make coverage | |
- name: Adjust source paths in coverage for Sonar | |
run: sed -i "s/<source>\/home\/runner\/work\/bigboat-python-api\/bigboat-python-api<\/source>/<source>\/github\/workspace<\/source>/g" /home/runner/work/bigboat-python-api/bigboat-python-api/coverage.xml | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@v2.1.1 | |
env: | |
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- run: coveralls | |
if: "${{ success() }}" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
strategy: | |
matrix: | |
python: | |
- '3.8.18' | |
- '3.12.3' |