summaryrefslogtreecommitdiff
path: root/.forgejo/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.forgejo/workflows/test.yml')
-rw-r--r--.forgejo/workflows/test.yml37
1 files changed, 5 insertions, 32 deletions
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index fa3ac07..c7885f0 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -1,42 +1,15 @@
-env:
- BUILD_DEPENDENCIES: apt-transport-https curl git iproute2 lsb-release make wget
- GOCILINT_VERSION: 1.62.0
on: [ push ]
-
jobs:
test:
runs-on: docker
container:
- image: debian:latest
+ image: codeberg.org/fkooman/ci:latest
steps:
- - name: Install OS Dependencies
- run: |
- apt-get update
- apt-get install --yes $BUILD_DEPENDENCIES
- - name: Enable Go Backports
- run: |
- wget -O /usr/share/keyrings/go+repo@tuxed.net.gpg https://repo.tuxed.net/golang/v1/deb/go+repo@tuxed.net.gpg
- echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/go+repo@tuxed.net.gpg] https://repo.tuxed.net/golang/v1/deb $(lsb_release -c -s) main" > /etc/apt/sources.list.d/golang_v1.list
- apt-get update
- apt-get install --yes golang-go
- - name: Install linter
- run: |
- wget -O lint.deb https://github.com/golangci/golangci-lint/releases/download/v$GOCILINT_VERSION/golangci-lint-$GOCILINT_VERSION-linux-amd64.deb
- dpkg -i lint.deb
- rm lint.deb
- name: Clone Repository
- run: |
- mkdir app
- git clone -b ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }} app
+ run: git clone -b ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }} .
- name: Download Go deps
- run: |
- cd app
- go get ./...
+ run: GOPROXY=https://proxy.golang.org,direct go get ./...
- name: Test Go
- run: |
- cd app
- unshare -r -n bash -c "ip link set lo up && make test"
+ run: unshare -r -n bash -c "ip link set lo up && make test"
- name: Lint
- run: |
- cd app
- make lint
+ run: make lint