Skip to content

Update test2.yaml

Update test2.yaml #2

Workflow file for this run

name: Run HTML Code
on:
push:
branches:
- master
jobs:
run-server:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Start HTTP Server
run: |
python3 -m http.server 8080 &
echo "Server is running on http://localhost:8080"