Skip to content

Use Go 1.23

Use Go 1.23 #38

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Run checks
run: |
sudo apt-get -qq update
sudo apt-get install -y bzr
make ci
- name: Build
env:
REGISTRY: appscodeci
DOCKER_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
USERNAME: 1gtm
run: |
docker login --username ${USERNAME} --password ${DOCKER_TOKEN}
make push