fix: fix tags mapping when field is null #75
Workflow file for this run
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
### Action to build and run the unit tests of backend | |
name: Build backend | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
paths: | |
- 'backend/**' | |
jobs: | |
Build: | |
name: GradleBuild | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Setup java | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 #3.13.0 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Execute Gradle build | |
run: | | |
cd backend | |
./gradlew build |