Skip to content

Issue #9 Workflow running Maven tests on each push. #33

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

Merged
merged 18 commits into from
Nov 2, 2022
16 changes: 16 additions & 0 deletions .github/workflows/CryptatorTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name : CyptatorTest
on : push
jobs :
tests:
runs-on: ubuntu-latest
steps:
- name: Checkhout the repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
cache: 'maven'
- name: Test with Maven
run: mvn -B test -Dtest=ExtensiveTesting --file pom.xml
2 changes: 2 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#+TITLE: Cryptator
[[https://opensource.org/licenses/BSD-3-Clause][https://img.shields.io/badge/License-BSD%203--Clause-blue.svg]]

[[https://github.com/arnaud-m/cryptator/actions/workflows/CryptatorTest.yml][file:https://github.com/arnaud-m/cryptator/actions/workflows/CryptatorTest.yml/badge.svg]]

Cryptator is distributed under BSD 3-Clause License (Copyright (c) 2021, Université Côte d'Azur).

Cryptator is a cryptarithm solver using [[https://en.wikipedia.org/wiki/Constraint_programming][Constraint Programming]].\\
Expand Down