Sha256: c95887d8b932b53e1e4d940a04c7621e31737944c96ac6846e2ec9551b7d2109
Contents?: true
Size: 740 Bytes
Versions: 3
Compression:
Stored size: 740 Bytes
Contents
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-20.04 strategy: matrix: ruby: [ '2.6', '2.7', '3.0' ] steps: - uses: actions/checkout@v2 - name: Checkout submodule shell: bash run: | auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive git submodule update --init --force --recursive - name: Set up Ruby ${{ matrix.ruby }} uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
numo-pocketfft-0.3.2 | .github/workflows/build.yml |
numo-pocketfft-0.3.1 | .github/workflows/build.yml |
numo-pocketfft-0.3.0 | .github/workflows/build.yml |