mirror of
https://github.com/Cyclenerd/offline-map-tile-downloader.git
synced 2026-05-31 11:54:53 +02:00
go init
This commit is contained in:
@@ -2,7 +2,7 @@ First off, thanks for taking the time to contribute!
|
||||
|
||||
## Please Complete the Following
|
||||
|
||||
- [ ] I read [CONTRIBUTING.md](https://github.com/Cyclenerd/template/blob/master/CONTRIBUTING.md)
|
||||
- [ ] I read [CONTRIBUTING.md](https://github.com/Cyclenerd/offline-map-tile-downloader/blob/master/CONTRIBUTING.md)
|
||||
|
||||
## Notes
|
||||
|
||||
|
||||
@@ -4,3 +4,7 @@ updates:
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
- package-ecosystem: "gomod"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
+14
-16
@@ -1,4 +1,4 @@
|
||||
name: "CI"
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -7,25 +7,23 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: CI/CD Test
|
||||
name: Test
|
||||
# https://github.com/actions/virtual-environments/
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: 🛎️ Checkout
|
||||
uses: actions/checkout@v5
|
||||
|
||||
# Test
|
||||
# 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: uname -a
|
||||
|
||||
# Test Linux operating systems
|
||||
- name: 🐧 Test Debian 11 (Bullseye)
|
||||
run: |
|
||||
docker pull debian:11
|
||||
docker run -v $PWD:/temp/test debian:11 uname -a
|
||||
|
||||
- name: 🐧 Test Rocky Linux 8
|
||||
run: |
|
||||
docker pull rockylinux:8
|
||||
docker run -v $PWD:/temp/test rockylinux:8 uname -a
|
||||
run: ./offline-map-tile-downloader --help
|
||||
Reference in New Issue
Block a user