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 fd8750a commit eee655a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 34 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 ./...
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
module github.com/MatejLach/astreams

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

go 1.18

0 comments on commit eee655a

Please sign in to comment.