mirror of
https://github.com/Cyclenerd/offline-map-tile-downloader.git
synced 2026-03-28 17:42:58 +01:00
29 lines
646 B
YAML
29 lines
646 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
# https://github.com/actions/virtual-environments/
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🛎️ Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
# https://github.com/marketplace/actions/setup-go-environment
|
|
- name: 🔧 Setup go
|
|
uses: actions/setup-go@v5
|
|
|
|
# https://github.com/marketplace/actions/run-golangci-lint
|
|
- name: 🌡️ Lint
|
|
uses: golangci/golangci-lint-action@v8
|
|
|
|
- name: 🍳 Build
|
|
run: make native
|
|
|
|
- name: 🌡️ Test
|
|
run: ./offline-map-tile-downloader --help |