WebApp CI 추가 #6
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
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 GitHub Actions / CI (Server)Invalid workflow file
|
||
run: docker compose -f "docker/docker-compose-cassandra-${{ maxtrix.cassandra-version }}.yml" up -d --build --wait | ||
timeout-minutes: 3 | ||
- name: Build | ||
run: ./gradlew build |