Skip to content

[CI] Replace old CI with Github Actions #1

[CI] Replace old CI with Github Actions

[CI] Replace old CI with Github Actions #1

---
name: test-and-build
on:
push:
branches: ['*']
tags: ['v*']
permissions:
contents: write
jobs:
test-and-build:
defaults:
run:
shell: bash
container:
image: luzifer/archlinux
env:
CGO_ENABLED: 1
GOPATH: /go
runs-on: ubuntu-latest
steps:
- name: Enable custom AUR package repo
run: echo -e "[luzifer]\nSigLevel = Never\nServer = https://archrepo.hub.luzifer.io/\$arch" >>/etc/pacman.conf
- name: Install required packages
run: |
pacman -Syy --noconfirm \
base-devel \
git \
go \
golangci-lint-bin
- uses: actions/checkout@v3
- name: Marking workdir safe
run: git config --global --add safe.directory /__w/rconfig/rconfig
- name: Lint and test code
run: |
go test -v -race -cover ./...
golangci-lint run ./...
...