Skip to content

fixed the color

fixed the color #15

Workflow file for this run

name: Java CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Find and compile all Java files
run: |
echo "Compiling all Java files..."
find . -name "*.java" > sources.txt
javac @sources.txt