fix(tests): correct decimal separator in WeatherDataTest #2
This file contains hidden or 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
# This workflow uses GitHub's CodeQL to analyze your Java code for vulnerabilities and errors. | |
name: "CI with CodeQL" | |
on: | |
push: | |
branches: [ feature/** ] | |
pull_request: | |
branches: [ feature/** ] | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
analyze-and-ci: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'java' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Build with Maven | |
run: mvn -B clean package | |
- name: Run Checkstyle (Lint) | |
run: mvn checkstyle:check | |
- name: Run Tests | |
run: mvn test | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |