Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(tests): correct decimal separator in WeatherDataTest #2

fix(tests): correct decimal separator in WeatherDataTest

fix(tests): correct decimal separator in WeatherDataTest #2

# 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