(maint) Change from pull_request_target
to pull_request
#188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ci" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
jobs: | |
spec: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- '2.7' | |
- '3.2' | |
runs_on: | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
name: "Spec : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }}" | |
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main" | |
secrets: "inherit" | |
with: | |
ruby_version: ${{ matrix.ruby_version }} | |
runs_on: ${{ matrix.runs_on }} | |
rake_task: 'gem_revendor test:coverage' | |
acceptance: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- '2.7' | |
- '3.2' | |
include: | |
- ruby_version: '2.7' | |
puppet_version: '~> 7.0' | |
- ruby_version: '3.2' | |
puppet_version: '~> 8.0' | |
runs_on: | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
name: "Acceptance : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }}" | |
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main" | |
secrets: "inherit" | |
with: | |
ruby_version: ${{ matrix.ruby_version }} | |
runs_on: ${{ matrix.runs_on }} | |
rake_task: 'gem_revendor acceptance_languageserver' | |
puppet_version: ${{ matrix.puppet_version }} | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- '2.7' | |
- '3.2' | |
name: "Build Editor Service (Ruby ${{ matrix.ruby_version }})" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- name: Set build version | |
shell: pwsh | |
run: | | |
'99.99.0-gh.${{ github.run_number }}' | Out-File -FilePath 'lib\puppet_editor_services\VERSION' -Encoding ASCII -Confirm:$false -Force | |
- name: Run rake gem_revendor build | |
run: bundle exec rake gem_revendor build | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: puppet-editor-services | |
path: output/*.zip | |
retention-days: 2 |