Skip to content

Update CI

Update CI #142

name: Continuous Integration
on:
push:
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
static-analysis:
name: Static analysis
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20.1'
- run: go version
- name: Installing the shfmt tool
run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
- name: Installing the shellcheck tool
run: |
sudo apt update
sudo apt install shellcheck
shellcheck --version
- name: Running checks
run: make check
check-installer:
name: Checking the installation
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v2
- name: Checking the installation of dotfiles
run: make install