Skip to content

all: rename project to espflasher #8

all: rename project to espflasher

all: rename project to espflasher #8

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Build
run: go build .
- name: Test
run: go test -v ./...