Update README.md #3
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: Develop Workflow | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
## Lint Verification | |
lint: | |
name: "Rubocop Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ./.github/actions/setup-ruby | |
- name: Run Rubocop | |
run: bundle exec rubocop -l | |
## Testing | |
test: | |
runs-on: ubuntu-latest | |
name: "Tests" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Running Tests | |
uses: ./.github/actions/tests | |
## Building | |
build: | |
runs-on: ubuntu-latest | |
name: "Build Gem" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ./.github/actions/setup-ruby | |
- name: Build Gem | |
run: | | |
gem build *.gemspec | |