Skip to content

Bump cli/gh-extension-precompile from 1 to 2 in the actions-dependencies group #15

Bump cli/gh-extension-precompile from 1 to 2 in the actions-dependencies group

Bump cli/gh-extension-precompile from 1 to 2 in the actions-dependencies group #15

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
Build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-build
cancel-in-progress: true
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Build and Install
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make install
UnitTest:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-ut
cancel-in-progress: true
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Build and Install
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make install
- name: Run tests
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make test
Run:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-run
cancel-in-progress: true
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Build and Install
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make install
- name: Run tests
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make test-run