Skip to content

build(deps): Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #20

build(deps): Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

build(deps): Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #20

Workflow file for this run

name: Quality check
on:
push:
branches:
- "*"
pull_request:
jobs:
checks:
name: Validate sources
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Install dependencies
run: |
pip3 install --user reuse
make
- run: make check
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Install dependencies
run: make
- run: make test