adding java 17 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run TestSpec | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build-job: | |
runs-on: ubuntu-latest | |
name: build with testspec | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Use Testspec Action to Clone and Run | |
uses: Testing-By-Specification/[email protected] | |
with: | |
version: '0.0.4' | |
plugin_type: 'directory' | |
plugin_path: './features/core' |