Skip to content

Fix data freq y new #175

Fix data freq y new

Fix data freq y new #175

Workflow file for this run

# disable sonarcloud for now as it requires a token (perhaps paid).
# name: sonarcloud
# on:
# push:
# branches:
# - main
# pull_request:
# types: [opened, synchronize, reopened]
# branches:
# - main
# jobs:
# sonarcloud:
# name: SonarCloud
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
# - name: Set up Python
# uses: actions/setup-python@v3
# with:
# python-version: "3.10"
# - name: Python info
# shell: bash -l {0}
# run: |
# which python3
# python3 --version
# - name: Install hatch
# run: python3 -m pip install hatch
# - name: Run unit tests with coverage
# run: hatch run coverage
# - name: Correct coverage paths
# run: sed -i "s+$PWD/++g" coverage.xml
# - name: SonarCloud Scan
# uses: SonarSource/sonarcloud-github-action@master
# env:
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
# SONAR_TOKEN: ${{secrets.SONAR_TOKEN }}