Skip to content

chore(deps): Bump actions/checkout from 6.0.3 to 7.0.0 #114

chore(deps): Bump actions/checkout from 6.0.3 to 7.0.0

chore(deps): Bump actions/checkout from 6.0.3 to 7.0.0 #114

Workflow file for this run

name: Tests
permissions: {}
on:
push:
branches:
- main
pull_request:
jobs:
tests:
strategy:
matrix:
tuleap_functions:
- "artifact-post-action/auto-assign"
- "artifact-post-action/compute-risk"
- "artifact-post-action/post-action-add-comment"
runs-on: ubuntu-24.04
name: Tests (${{ matrix.tuleap_functions }})
defaults:
run:
working-directory: ${{ matrix.tuleap_functions }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: cachix/install-nix-action@8aa03977d8d733052d78f4e008a241fd1dbf36b3 # v31.10.6
- name: Prepare
run: nix-shell --run "make prepare"
- name: Tests
run: nix-shell --pure --run "make tests"
- name: Build
run: nix-shell --pure --run "make build"
formatting_linting:
name: Check for formatting or linting issues
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: cachix/install-nix-action@8aa03977d8d733052d78f4e008a241fd1dbf36b3 # v31.10.6
- name: Build
run: nix-shell --pure --run 'treefmt --ci'