Skip to content

Commit

Permalink
add new CI (test binary)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmikk committed Oct 28, 2024
1 parent 9f6b1ea commit 91e9a1c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/bash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test SeqHasher binary

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23

- name: Build binary
run: go build -v -ldflags="-w -s" seqhasher.go

- name: Run tests
run: |
chmod +x test/test2_binary.sh
bash test/test2_binary.sh

0 comments on commit 91e9a1c

Please sign in to comment.