Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Reporting erroneous/inconsistent behavior
title: "[BUG] "
labels: "bug"
assignees:
- merendamattia
- VincenzoArceri

---

**Description**
A clear and concise description of what the bug is.

**Reproducibility information**
Report the version (or the commit hash) to identify the point in time where this bug happens. Try to refer to commits already present on the master branch if possible.

**Expected behavior**
Describe what is expected to happen (output, logs, exceptions, ...).

**Actual behavior**
Describe what is happening instead (output, logs, exceptions, ...).

**Attachments**
If applicable, attach everything that might help us reproduce the bug.

**Further content**
Add anything else that might be important for resolving this bug.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE REQUEST] "
labels: 'enhancement'
assignees:
- merendamattia
- VincenzoArceri

---

**Description**
Describe what the requested feature is.

**Motivation**
Describe why you think this feature is useful.

**Suggested implementation**
If you are aware of a paper presenting the required feature (if any), please cite it here.

**Further content**
Add anything else that might be important for implementing this feature.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Question
about: A question for the developers
title: "[QUESTION] "
labels: "question"
assignees:
- merendamattia
- VincenzoArceri

---

**Description**
Write your question here!
10 changes: 5 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Docker build image test'
name: 'Docker build image'

on:
pull_request:
Expand All @@ -9,15 +9,15 @@ on:
- master

jobs:
docker-test:
docker-build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Build Docker image
run: docker build -t evmlisa:test .
run: docker build -t evm-lisa:ci .

- name: Remove Docker image
run: docker rmi evmlisa:test
run: docker rmi evm-lisa:ci
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a base image with JDK 11
FROM openjdk:11-jdk-slim
FROM eclipse-temurin:11-jdk-jammy

# Specify the version of Gradle to install
ARG GRADLE_VERSION=8.0
Expand Down