Skip to content

Commit

Permalink
replace CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejLach committed Sep 8, 2024
1 parent 39702a6 commit ccc8470
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 33 deletions.
31 changes: 0 additions & 31 deletions .drone.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Go Tests

on:
push:
branches:
- master
pull_request:
branches:
- '**'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.x

- name: Run tests
run: go test ./...
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
module github.com/MatejLach/astreams

retract (
v0.8.0 // WIP, untested
v0.9.0 // experiments, not fit for consumption
[v0.8.0, v0.9.0] // experiments, not fit for consumption
)

go 1.18

0 comments on commit ccc8470

Please sign in to comment.