user management apis #47
Workflow file for this run
This file contains hidden or 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 ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby-version: ['3.2', '3.3'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby ${{ matrix.ruby-version }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: true | |
| - name: Run RuboCop | |
| run: bundle exec rubocop | |
| - name: Run RSpec | |
| run: bundle exec rspec | |
| - name: Extract coverage percentage | |
| if: matrix.ruby-version == '3.3' | |
| run: | | |
| COVERAGE=$(ruby -r json -e " | |
| data = JSON.parse(File.read('coverage/.resultset.json')) | |
| result = data.values.first | |
| covered = 0 | |
| total = 0 | |
| result['coverage'].each do |file, lines| | |
| lines['lines'].each do |count| | |
| next if count.nil? | |
| total += 1 | |
| covered += 1 if count > 0 | |
| end | |
| end | |
| percentage = (covered.to_f / total * 100).round(2) | |
| puts percentage | |
| ") | |
| echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV | |
| mkdir -p badges | |
| echo "{\"schemaVersion\": 1, \"label\": \"coverage\", \"message\": \"${COVERAGE}%\", \"color\": \"$(ruby -e "c=${COVERAGE}; puts c >= 90 ? 'brightgreen' : c >= 80 ? 'green' : c >= 70 ? 'yellow' : c >= 60 ? 'orange' : 'red'")\"}" > badges/coverage.json | |
| - name: Commit coverage badge data | |
| if: matrix.ruby-version == '3.3' && github.ref == 'refs/heads/main' | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git add badges/coverage.json || true | |
| git diff --quiet && git diff --staged --quiet || git commit -m "Update coverage badge [skip ci]" | |
| git push || true | |