Skip to content

docs: Remove team attribution from README footer #13

docs: Remove team attribution from README footer

docs: Remove team attribution from README footer #13

Workflow file for this run

name: CloudFileSystem CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: maven
- name: Build Backend with Maven
working-directory: ./backend
run: mvn clean package -DskipTests
lint-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install Dependencies
working-directory: ./frontend
run: npm ci
- name: Lint Frontend
working-directory: ./frontend
run: npm run lint --if-present
check-ml-service:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install Dependencies
working-directory: ./ml-service
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Verify Training Script Syntax
working-directory: ./ml-service
run: python -m py_compile train_model.py