Skip to content

Commit

Permalink
fix test action
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobetic committed Nov 28, 2024
1 parent b760853 commit 4a98054
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: make test-go
- name: Test fixtures
run: |
make coin
make test-fixtures
- name: Install Go
uses: actions/setup-go@v2
- name: Checkout code
uses: actions/checkout@v2
- name: Setup
run: make setup
- name: Run tests
run: make test-go
- name: Test fixtures
run: |
make coin
make test-fixtures
- name: Test typescript
run: make test-ts
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ browse-coverage:

setup:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
npm --prefix cmd/coin2html/js install

.PHONY: test test-fixtures test-go fmt lint cover browse-coverage

0 comments on commit 4a98054

Please sign in to comment.