Skip to content

Commit

Permalink
play with workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kudrykv committed Nov 2, 2024
1 parent 4178682 commit 201e090
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test and lint
on: [push, pull_request]

jobs:
test-and-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.3'
bundler-cache: true

- name: Run tests
run: bundle exec rspec

- name: Run linter
run: echo Later

0 comments on commit 201e090

Please sign in to comment.