Skip to content

Commit

Permalink
Revert "chore(action) : 액션 파일 수정"
Browse files Browse the repository at this point in the history
This reverts commit b5ad69b.
  • Loading branch information
this-is-spear committed Jul 21, 2024
1 parent cbe1b47 commit bf14ae2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,25 @@ on:

jobs:
functional_tests_and_integration_tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [17]
fail-fast: false

runs-on: ${{ matrix.os }}

timeout-minutes: 60
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3

- name: 🛠 Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
java-version: ${{ matrix.version }}
distribution: 'corretto'

- name: ☑️ Validate Gradle wrapper
Expand Down

0 comments on commit bf14ae2

Please sign in to comment.