Skip to content

Commit 076df7e

Browse files
authored
Merge pull request #16 from victormachadoperez/github-actions
Add small github Actions workflow that checks if froster can be installed in latest Ubuntu release
2 parents 99919ac + f8a6905 commit 076df7e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Diff for: .github/workflows/froster-ubuntu-install.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: froster-ubuntu-install
2+
run-name: Froster installs correctly in Ubuntu-latest
3+
on: [push]
4+
jobs:
5+
check-froster-installation:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- run: curl --version
10+
- run: python3 --version
11+
- run: pip --version
12+
- run: ./install.sh
13+
- run: froster --version
14+
15+

0 commit comments

Comments
 (0)