Skip to content

Commit afd4e1a

Browse files
CI: Add Build tests
1 parent c907886 commit afd4e1a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-22.04
13+
steps:
14+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15+
- uses: actions/checkout@v3
16+
17+
# Runs a single command using the runners shell
18+
- name: Run the scripts
19+
run: |
20+
sudo bash install.sh

0 commit comments

Comments
 (0)