Skip to content

FullFeedEventDTO: using any friend tag that isn't "Everyone" for its color #52

FullFeedEventDTO: using any friend tag that isn't "Everyone" for its color

FullFeedEventDTO: using any friend tag that isn't "Everyone" for its color #52

Workflow file for this run

name: Spring Boot Syntax Check (Maven)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Compile the project (syntax check)
run: mvn clean compile -DskipTests
- name: Compile tests (syntax check for test files)
run: mvn test-compile -DskipTests
- name: Run test suite (but allow failures)
run: mvn test || true