summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-03-10 08:23:36 +0900
committerGitHub <noreply@github.com>2023-03-10 08:23:36 +0900
commit1cf4720a6f4a1acbead270405609afb783eebd07 (patch)
tree6d45b1fa4c1a95f99498eb9e88444d5cb8523abf /.github/workflows/macos.yml
parent6f2b16b343ff78f73093b0a8634ead3d173549cf (diff)
parent722d3fbda1640eb956766d1f8668d42ce6e5e450 (diff)
downloadpsych-1cf4720a6f4a1acbead270405609afb783eebd07.tar.gz
Merge pull request #622 from ruby/use-callable-workflow
Use callable workflow
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
deleted file mode 100644
index ddca074..0000000
--- a/.github/workflows/macos.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: macos
-
-on: [push, pull_request]
-
-jobs:
- build:
- runs-on: macos-latest
- strategy:
- fail-fast: false
- matrix:
- ruby: [ head, 3.1, "3.0", 2.7, 2.6, 2.5, 2.4 ]
- steps:
- - uses: actions/checkout@v3
- - name: Install libraries
- run: brew install libyaml
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: ${{ matrix.ruby }}
- - name: Install dependencies
- run: bundle install
- - name: Run test
- run: rake
- - name: Install gem
- run: rake install
- if: ${{ matrix.ruby != 'head' }}