mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-12-04 18:48:08 +08:00
Some checks failed
test / macos Ruby 2.6 (push) Has been cancelled
test / macos Ruby 2.7 (push) Has been cancelled
test / macos Ruby 3.0 (push) Has been cancelled
test / macos Ruby 3.1 (push) Has been cancelled
test / macos Ruby 3.2 (push) Has been cancelled
test / macos Ruby 3.3 (push) Has been cancelled
test / macos Ruby 3.4 (push) Has been cancelled
test / macos Ruby head (push) Has been cancelled
test / ubuntu Ruby 2.6 (push) Has been cancelled
test / ubuntu Ruby 2.7 (push) Has been cancelled
test / ubuntu Ruby 3.0 (push) Has been cancelled
test / ubuntu Ruby 3.1 (push) Has been cancelled
test / ubuntu Ruby 3.2 (push) Has been cancelled
test / ubuntu Ruby 3.3 (push) Has been cancelled
test / ubuntu Ruby 3.4 (push) Has been cancelled
test / ubuntu Ruby head (push) Has been cancelled
doc / build (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18 lines
490 B
YAML
18 lines
490 B
YAML
name: test
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
build:
|
|
name: ${{ matrix.os }} Ruby ${{ matrix.ruby }}
|
|
runs-on: ${{ matrix.os }}-latest
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu", "macos"]
|
|
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "head"]
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: ${{ matrix.ruby }}
|
|
bundler-cache: true
|
|
- run: bundle exec rake test
|