Skip to content
Open

Dev #17

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
32 changes: 32 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI/CD Pipeline

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
maven-version: '3.8.4'

- name: Build and Test
run: |
mvn clean install

- name: Upload JAR
uses: actions/upload-artifact@v2
with:
name: app-jar
path: target/*.jar

308 changes: 0 additions & 308 deletions TourGuide/mvnw

This file was deleted.

Loading