Skip to content

Commit

Permalink
Merge pull request #1 from jmhbnz/master
Browse files Browse the repository at this point in the history
Add basic workflow for running tests
  • Loading branch information
siyuanfoundation authored Feb 15, 2024
2 parents cb4be5d + d862728 commit 7dc0412
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Tests
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
- uses: actions/checkout@v4
- name: tests
run: |
make test
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit 7dc0412

Please sign in to comment.