Skip to content

Commit

Permalink
Merge remote-tracking branch 'cloudslab/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
hoaiocom committed Jul 12, 2023
2 parents 25ce635 + e579a2a commit 2627688
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: iQuantum Maven Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml

# # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
# - name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![iQuantum Maven Build](https://github.com/Cloudslab/iQuantum/actions/workflows/maven.yml/badge.svg)](https://github.com/Cloudslab/iQuantum/actions/workflows/maven.yml)

# iQuantum: A Toolkit for Modeling and Simulation of Quantum Computing Environments

As quantum computers become increasingly accessible through
Expand Down Expand Up @@ -35,4 +37,4 @@ For major changes, please open an issue first to discuss what you would like to
[1] Hoa T. Nguyen, M. Usman, and R. Buyya, "iQuantum: A Case for Modeling and Simulation of Quantum Computing Environments," 2023. [Online]. Available: [arXiv:2303.15729](https://arxiv.org/abs/2303.15729) [quant-ph].

## License
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html)
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html)

0 comments on commit 2627688

Please sign in to comment.