Skip to content

Edited SecurityConfig #59

Edited SecurityConfig

Edited SecurityConfig #59

Workflow file for this run

name: Build Project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
- name: Build project
run: ./gradlew assemble
- name: Run tests
run: ./gradlew test