Skip to content

bla

bla #124

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
- devs/**
jobs:
linters:
timeout-minutes: 20
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5.0.0
- name: Actionlint
uses: docker://rhysd/actionlint:latest
with:
args: -color
action:
runs-on: ubuntu-24.04
outputs:
scopes: ${{ steps.action.outputs.scopes }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5.0.0
- name: Trying action
id: action
uses: ./
action_tests:
runs-on: ubuntu-24.04
needs:
- action
steps:
- name: Check scopes
env:
SCOPES: ${{ needs.action.outputs.scopes }}
EVERYTHING: ${{ fromJSON(needs.action.outputs.scopes).everything }}
EVERYTHING_BOOL: ${{ fromJSON(needs.action.outputs.scopes).everything == true }}
run: |
echo "SCOPES: $SCOPES"
test "$EVERYTHING" == "true"
test "$EVERYTHING_BOOL" == "true"