Skip to content

Commit e74a25f

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main'
2 parents d350e27 + d757672 commit e74a25f

2 files changed

Lines changed: 16 additions & 7 deletions

File tree

.github/workflows/test-dependencies.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Test dependencies
22

33
on:
4-
workflow_dispatch:
4+
workflow_dispatch: # Allow running it manually.
5+
schedule:
6+
- cron: '0 0 * * *' # Run daily at midnight UTC
57

68
jobs:
79
test-arch-dependencies:
@@ -47,3 +49,14 @@ jobs:
4749

4850
- name: Test macos dependencies
4951
run: ./tests/test-termux-dependencies.sh
52+
53+
test-fedora-dependencies:
54+
name: Test Fedora Dependencies
55+
runs-on: ubuntu-latest
56+
57+
steps:
58+
- name: Checkout Repository
59+
uses: actions/checkout@v2
60+
61+
- name: Test macos dependencies
62+
run: ./tests/test-fedora-dependencies.sh

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Shell script to install NormalNvim in a single step.
55

66
* Arch based Linux distros
77
* Ubuntu based Linux distros
8+
* Fedora based Linux distros
89
* MacOS (homebrew)
910
* Termux
1011

@@ -15,9 +16,4 @@ The fact a installer has a GitHub action, mean the installer is very stable; If
1516
* Ubuntu
1617
* MacOs
1718
* Termux
18-
19-
## Roadmap
20-
21-
I've been working on this for a week and I'm a bit burned up, so let's re-visit adding support for the remaining operative systems in the future.
22-
23-
* Fedora github action
19+
* Fedora

0 commit comments

Comments
 (0)