Skip to content

Commit 3edd8e4

Browse files
committed
build: switching to GHA
Signed-off-by: deadprogram <[email protected]>
1 parent 159f139 commit 3edd8e4

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

Diff for: .circleci/config.yml

-20
This file was deleted.

Diff for: .github/workflows/build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- dev
8+
- release
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
container: tinygo/tinygo-dev
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v2
18+
- name: TinyGo version check
19+
run: tinygo version
20+
- name: Enforce Go Formatted Code
21+
run: make fmt-check
22+
- name: Run unit tests
23+
run: make unit-test
24+
- name: Run build and smoke tests
25+
run: make smoke-test

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TinyGo Drivers
22

3-
[![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![CircleCI](https://circleci.com/gh/tinygo-org/drivers/tree/dev.svg?style=svg)](https://circleci.com/gh/tinygo-org/drivers/tree/dev)
3+
[![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![Build](https://github.com/tinygo-org/drivers/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/drivers/actions/workflows/build.yml)
44

55

66
This package provides a collection of hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org).

0 commit comments

Comments
 (0)