Skip to content

ci: switch from SLSA provenance to actions/attest; update provenance docs #70

ci: switch from SLSA provenance to actions/attest; update provenance docs

ci: switch from SLSA provenance to actions/attest; update provenance docs #70

Workflow file for this run

name: Run CI
on:
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '3.1'
- '3.2'
- '3.4'
- jruby-9.4
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: ./.github/actions/build-docs
if: ${{ !startsWith(matrix.ruby-version, 'jruby') }}
build-windows:
runs-on: windows-latest
defaults:
run:
shell: powershell
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@319994f95fa847cf3fb3cd3dbe89f6dcde9f178f # v1
with:
ruby-version: 3.2
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec spec