summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2021-01-13 10:52:15 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2021-01-13 19:10:24 +0900
commite922704f72e1ca6d5c400cc0b741155b636c8e1e (patch)
tree09df0faddbfa6791b6be006031c90f0f5c5599a8 /.github
parentc6115735c71d4952de128f983858170d5cc15ea6 (diff)
Migrate to GitHub Actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml47
-rw-r--r--.github/workflows/macos.yml44
2 files changed, 91 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
new file mode 100644
index 00000000..f8db7dc9
--- /dev/null
+++ b/.github/workflows/linux.yml
@@ -0,0 +1,47 @@
+---
+name: Test fzf on Linux
+
+on:
+ push:
+ branches: [ master, devel ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ go: [1.14, 1.15]
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+
+ - name: Set up Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ matrix.go }}
+
+ - name: fish-actions/install-fish
+ uses: fish-actions/install-fish@v1.0.0
+
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@v1.62.0
+ with:
+ ruby-version: 3.0.0
+
+ - name: Install packages
+ run: sudo apt-get install --yes zsh tmux
+
+ - name: Install Ruby gems
+ run: sudo gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1
+
+ - name: Rubocop
+ run: rubocop --require rubocop-minitest --require rubocop-performance
+
+ - name: Unit test
+ run: make test
+
+ - name: Integration test
+ run: make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
new file mode 100644
index 00000000..46ab6c2f
--- /dev/null
+++ b/.github/workflows/macos.yml
@@ -0,0 +1,44 @@
+---
+name: Test fzf on macOS
+
+on:
+ push:
+ branches: [ master, devel ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: macos-latest
+ strategy:
+ matrix:
+ go: [1.14, 1.15]
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+
+ - name: Set up Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ matrix.go }}
+
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@v1.62.0
+ with:
+ ruby-version: 3.0.0
+
+ - name: Install packages
+ run: HOMEBREW_NO_INSTALL_CLEANUP=1 brew install fish zsh tmux
+
+ - name: Install Ruby gems
+ run: gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1
+
+ - name: Rubocop
+ run: rubocop --require rubocop-minitest --require rubocop-performance
+
+ - name: Unit test
+ run: make test
+
+ - name: Integration test
+ run: make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose