Skip to content

mobile view update

mobile view update #10

Workflow file for this run

name: CI
on:
push:
branches:
- main # This triggers the workflow on pushes to the main branch
jobs:
build:
runs-on: ubuntu-latest # This sets the environment for the job
steps:
- name: Checkout the repository
uses: actions/checkout@v4 # This uses the checkout action
with:
submodules: true # Ensures submodules are included
token: ${{ secrets.GH_PROJECTS_USE_PAT }} # This references the secret you created
- name: Build your project
run: echo "Building the project" # Replace this with your actual build commands