Skip to content

Feature/#34 script generator 구현 #32

Feature/#34 script generator 구현

Feature/#34 script generator 구현 #32

Workflow file for this run

name: GOODEAT Backend Build Test
on:
workflow_dispatch:
pull_request:
types: [ opened, synchronize, reopened ]
branches:
- main
jobs:
build:
name: Build with Gradle
runs-on: ubuntu-latest
steps:
- name: 해당 브랜치로 체크아웃
uses: actions/checkout@v2
- name: JDK 17로 설정
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'temurin'
- name: selenium을 위한 chrome 드라이버 설치
run: |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
- name: Give permission for Gradle
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build