diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 1c79a4a..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,40 +0,0 @@ -on: - push: - branches: - - main - -jobs: - install_nvim: - name: install nvim - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: bash install_nvim.sh - - install_fish: - name: install fish - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: bash install_fish.sh - - install_tmux: - name: install tmux - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: bash install_tmux.sh - - install_fzf: - name: install fzf - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: bash install_fzf.sh - - install_codespaces_setup: - name: install codespaces setup - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: bash install.sh diff --git a/.github/workflows/test_codespaces_install.yml b/.github/workflows/test_codespaces_install.yml new file mode 100644 index 0000000..5419b1d --- /dev/null +++ b/.github/workflows/test_codespaces_install.yml @@ -0,0 +1,16 @@ +on: + push: + paths: + - install.sh + - install_tmux.sh + - install_nvim.sh + - install_fzf.sh + - install_fish.sh + +jobs: + install_codespaces_setup: + name: install codespaces setup + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: bash install.sh diff --git a/test_install_fish.yml b/test_install_fish.yml new file mode 100644 index 0000000..957318a --- /dev/null +++ b/test_install_fish.yml @@ -0,0 +1,11 @@ +on: + push: + paths: install_fish.sh + +jobs: + install_fish: + name: install fish + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: bash install_fish.sh diff --git a/test_install_fzf.yml b/test_install_fzf.yml new file mode 100644 index 0000000..da669fb --- /dev/null +++ b/test_install_fzf.yml @@ -0,0 +1,11 @@ +on: + push: + paths: install_fzf.sh + +jobs: + install_fzf: + name: install fzf + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: bash install_fzf.sh diff --git a/test_install_nvim.yml b/test_install_nvim.yml new file mode 100644 index 0000000..cc00971 --- /dev/null +++ b/test_install_nvim.yml @@ -0,0 +1,11 @@ +on: + push: + paths: install_nvim.sh + +jobs: + install_nvim: + name: install nvim + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: bash install_nvim.sh diff --git a/test_install_tmux.yml b/test_install_tmux.yml new file mode 100644 index 0000000..a1e42db --- /dev/null +++ b/test_install_tmux.yml @@ -0,0 +1,11 @@ +on: + push: + paths: install_tmux.sh + +jobs: + install_tmux: + name: install tmux + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: bash install_tmux.sh