Skip to content

Commit 0afeb44

Browse files
authored
Create blank.yml
1 parent d6b35ca commit 0afeb44

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.github/workflows/blank.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
- name: Proof HTML
5+
uses: anishathalye/proof-html@v2.1.2
6+
7+
# Controls when the workflow will run
8+
on:
9+
# Triggers the workflow on push or pull request events but only for the "main" branch
10+
push:
11+
branches: [ "main" ]
12+
pull_request:
13+
branches: [ "main" ]
14+
15+
# Allows you to run this workflow manually from the Actions tab
16+
workflow_dispatch:
17+
18+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
19+
jobs:
20+
# This workflow contains a single job called "build"
21+
build:
22+
# The type of runner that the job will run on
23+
runs-on: ubuntu-latest
24+
25+
# Steps represent a sequence of tasks that will be executed as part of the job
26+
steps:
27+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28+
- uses: actions/checkout@v4
29+
30+
# Runs a single command using the runners shell
31+
- name: Run a one-line script
32+
run: echo Hello, world!
33+
34+
# Runs a set of commands using the runners shell
35+
- name: Run a multi-line script
36+
run: |
37+
echo Add other actions to build,
38+
echo test, and deploy your project.

0 commit comments

Comments
 (0)