Skip to content

Commit c184bcd

Browse files
authored
chore: add automated build
1 parent 4ff6db6 commit c184bcd

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
3+
on:
4+
# Runs when commits are pushed (including merges pushed to main)
5+
push:
6+
branches: ["**"]
7+
8+
# Runs for PRs so you get build results before merge
9+
pull_request:
10+
branches: ["**"]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Basic build
21+
run: |
22+
echo "Put your build commands here"
23+
# examples:
24+
# npm ci && npm test
25+
# dotnet build
26+
# mvn -B test

0 commit comments

Comments
 (0)