Skip to content

Commit

Permalink
Refactor github actions reorder some pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
kudashevs committed Nov 6, 2023
1 parent b5ec7fd commit 844aab0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: tickle Gradle
if: steps.cache.outputs.cache-hit != 'true'
run: ./gradlew --version
working-directory: java
run: ./gradlew --version

- name: TRACER cache hit
if: steps.cache.outputs.cache-hit == 'true'
Expand All @@ -46,8 +46,8 @@ jobs:
uses: actions/checkout@v3

- name: run unit tests
run: ./run_tests.sh
working-directory: c
run: ./run_tests.sh

test-clojure:
runs-on: ubuntu-latest
Expand All @@ -66,8 +66,8 @@ jobs:
lein: 2.9.1 # Leiningen

- name: run unit tests
run: lein test
working-directory: clojure
run: lein test

# not working: project is based on ancient Mono and not Dotnet Core (!!)
#
Expand Down Expand Up @@ -106,12 +106,12 @@ jobs:
uses: actions/setup-go@v3

- name: init module
run: go mod init golang
working-directory: golang
run: go mod init golang

- name: run unit tests
run: go test
working-directory: golang/src/life
run: go test

test-groovy:
needs: cache-gradle
Expand All @@ -138,8 +138,8 @@ jobs:
distribution: 'adopt'

- name: run unit tests
run: ./gradlew test
working-directory: groovy
run: ./gradlew test

test-java:
needs: cache-gradle
Expand All @@ -166,8 +166,8 @@ jobs:
distribution: 'adopt'

- name: run unit tests
run: ./gradlew test
working-directory: java
run: ./gradlew test

# test-javascript:
# runs-on: ubuntu-latest
Expand Down Expand Up @@ -209,8 +209,8 @@ jobs:
distribution: 'adopt'

- name: run unit tests
run: ./gradlew test
working-directory: kotlin
run: ./gradlew test

test-php:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -242,8 +242,8 @@ jobs:
uses: actions/checkout@v3

- name: run unit tests
run: python test_gol.py
working-directory: python
run: python test_gol.py

test-ruby:
runs-on: ubuntu-latest
Expand All @@ -253,8 +253,8 @@ jobs:
uses: actions/checkout@v3

- name: run unit tests
run: rake test
working-directory: ruby
run: rake test

test-scala:
needs: cache-gradle
Expand All @@ -281,8 +281,8 @@ jobs:
distribution: 'adopt'

- name: run unit tests
run: ./gradlew test
working-directory: scala
run: ./gradlew test

# not working due to ancient project layout (not supported)
#
Expand Down

0 comments on commit 844aab0

Please sign in to comment.