Skip to content

Commit b09bb04

Browse files
authored
Issue #9 Workflow running Maven tests on each push. ( #33)
1 parent 46411d6 commit b09bb04

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/CryptatorTest.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name : CyptatorTest
2+
on : push
3+
jobs :
4+
tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkhout the repository
8+
uses: actions/checkout@v3
9+
- name: Set up JDK 11
10+
uses: actions/setup-java@v3
11+
with:
12+
java-version: '11'
13+
distribution: 'adopt'
14+
cache: 'maven'
15+
- name: Test with Maven
16+
run: mvn -B test -Dtest=ExtensiveTesting --file pom.xml

README.org

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#+TITLE: Cryptator
77
[[https://opensource.org/licenses/BSD-3-Clause][https://img.shields.io/badge/License-BSD%203--Clause-blue.svg]]
88

9+
[[https://github.com/arnaud-m/cryptator/actions/workflows/CryptatorTest.yml][file:https://github.com/arnaud-m/cryptator/actions/workflows/CryptatorTest.yml/badge.svg]]
10+
911
Cryptator is distributed under BSD 3-Clause License (Copyright (c) 2021, Université Côte d'Azur).
1012

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

0 commit comments

Comments
 (0)