Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
olegdayo committed Aug 22, 2024
1 parent 7a72413 commit 3d161ad
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: CheckOut
uses: actions/checkout@v3

- name: Test
run: make test
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: test
test:
go test ./...
5 changes: 5 additions & 0 deletions converter_test.go
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
package converter

import "testing"

func TestCustomConverter(t *testing.T) {
}
5 changes: 5 additions & 0 deletions number_test.go
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
package converter

import "testing"

func TestNumberConverter(t *testing.T) {
}
14 changes: 14 additions & 0 deletions number_text_test.go
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
package converter

import "testing"

func TestIntToStringConverter(t *testing.T) {
}

func TestFloatToStringConverter(t *testing.T) {
}

func TestStringToIntConverter(t *testing.T) {
}

func TestStringToFloatConverter(t *testing.T) {
}
5 changes: 5 additions & 0 deletions text_test.go
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
package converter

import "testing"

func TestTextConverter(t *testing.T) {
}

0 comments on commit 3d161ad

Please sign in to comment.