Skip to content

WebApp CI 추가

WebApp CI 추가 #6

Workflow file for this run

name: "CI (Server)"
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
push:
branches:
- main
workflow_dispatch:
jobs:
ci:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
cassandra-version: [ 4.0, 4.1, 5.0 ]
steps:
- name: checkout@v4
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
cache: gradle
timeout-minutes: 3
- name: Use Cassandra ${{ maxtrix.cassandra-version }}

Check failure on line 35 in .github/workflows/ci-server.yml

View workflow run for this annotation

GitHub Actions / CI (Server)

Invalid workflow file

The workflow is not valid. .github/workflows/ci-server.yml (Line: 35, Col: 15): Unrecognized named-value: 'maxtrix'. Located at position 1 within expression: maxtrix.cassandra-version .github/workflows/ci-server.yml (Line: 36, Col: 14): Unrecognized named-value: 'maxtrix'. Located at position 1 within expression: maxtrix.cassandra-version
run: docker compose -f "docker/docker-compose-cassandra-${{ maxtrix.cassandra-version }}.yml" up -d --build --wait
timeout-minutes: 3
- name: Build
run: ./gradlew build