on: [ push ] jobs: test: runs-on: codeberg-tiny-lazy container: image: codeberg.org/fkooman/ci:latest steps: - name: Clone Repository run: git clone -b ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }} . - name: Download Go deps run: GOPROXY=https://proxy.golang.org,direct go get ./... - name: Test Go run: unshare -r -n bash -c "ip link set lo up && make test" - name: Lint run: make lint