Skip to content

Merge pull request #107 from superstreamlabs/master #70

Merge pull request #107 from superstreamlabs/master

Merge pull request #107 from superstreamlabs/master #70

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "latest" branch
push:
branches: [ "latest" ]
pull_request:
branches: [ "latest" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest # windows-latest | macos-latest
name: Test changed-files
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
# Example 1
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
- name: Run varuables check script
run: ./.github/scripts/mandatory_variable_check.sh
shell: bash