Remove setting uid for -ui pods #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Set up Go 1.23 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.23' | |
id: go | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Prepare git | |
env: | |
GITHUB_USER: 1gtm | |
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }} | |
run: | | |
set -x | |
git config --global user.name "${GITHUB_USER}" | |
git config --global user.email "${GITHUB_USER}@appscode.com" | |
git config --global \ | |
url."https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com".insteadOf \ | |
"https://github.com" | |
- name: Run checks | |
run: | | |
sudo apt-get -qq update || true | |
make ci |