Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fin atelier 3 #15

Merged
merged 7 commits into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build and Test

on:
push:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'

- name: Build with Maven
run: mvn clean install

- name: Test with Maven
run: mvn clean verify

- name: SonarQube Scan
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.projectKey=cpe-divers-cours_cpe-cours -Dsonar.coverage.jacoco.xmlReportPaths=$(pwd)/coverage-aggregate/target/site/jacoco-aggregate/jacoco.xml
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
target
**/.vite/
**/.vite/
.vite/
8 changes: 0 additions & 8 deletions .vite/deps/_metadata.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vite/deps/package.json

This file was deleted.

20 changes: 0 additions & 20 deletions atelier1/docs/README.md

This file was deleted.

21 changes: 0 additions & 21 deletions atelier1/docs/architecture.md

This file was deleted.

Empty file removed atelier1/docs/imgs/README.txt
Empty file.
Binary file removed atelier1/docs/imgs/class.png
Binary file not shown.
Binary file removed atelier1/docs/imgs/flow_dynamic.png
Binary file not shown.
Binary file removed atelier1/docs/imgs/flow_static.png
Binary file not shown.
34 changes: 0 additions & 34 deletions atelier1/docs/rapport.md

This file was deleted.

17 changes: 0 additions & 17 deletions atelier1/dynamic/HELP.md

This file was deleted.

Loading
Loading