Skip to content

Commit

Permalink
fix(ci): add go test step
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmoss committed Oct 11, 2024
1 parent f01f737 commit c8a548c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
- run: go version
- run: go test ./test

- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
bundler-cache: false
ruby-version: ${{ matrix.ruby-version }}
- run: bundle exec rake compile:local
- run: bundle exec sus

rubocop:
Expand All @@ -33,7 +38,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
bundler-cache: false

- name: Rubocop
run: bundle exec rubocop
run: bundle exec rubocop -P --fail-level C

0 comments on commit c8a548c

Please sign in to comment.