Skip to content

Fix substitution error in entrypoint #12

Fix substitution error in entrypoint

Fix substitution error in entrypoint #12

Workflow file for this run

name: Test run for Falco GitHub Action
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
acl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Falco on valid ACL
uses: ./
with:
subcommand: lint
target: test/acl/valid.acl
- name: Run Falco on valid ACL with normal verbosity
uses: ./
with:
subcommand: lint
verbosity: normal
target: test/acl/valid.acl
- name: Run Falco on valid ACL with high verbosity
uses: ./
with:
subcommand: lint
verbosity: high
target: test/acl/valid.acl
#- name: Run Falco on ACL with invalid IP
#uses: ./
#with:
#subcommand: lint
#target: test/acl/invalid_ip.acl
#- name: Run Falco on ACL with invalid IP range
#uses: ./
#with:
#subcommand: lint
#target: test/acl/invalid_range.acl
#- name: Run Falco on ACL with invalid syntax
#uses: ./
#with:
#subcommand: lint
#target: test/acl/invalid_syntax.acl
vcl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Falco on valid VCL
uses: ./
with:
subcommand: lint
target: test/vcl/valid.vcl
- name: Run Falco on valid VCL with normal verbosity
uses: ./
with:
subcommand: lint
verbosity: normal
target: test/vcl/valid.vcl
- name: Run Falco on valid VCL with high verbosity
uses: ./
with:
subcommand: lint
verbosity: high
target: test/vcl/valid.vcl
- name: Run Falco on valid VCL with include, normal velocity
uses: ./
with:
subcommand: lint
verbosity: normal
include: test/vcl/blocked_urls.vcl
target: test/vcl/valid_with_include.vcl
#- name: Run Falco on invalid VCL
#uses: ./
#with:
#subcommand: lint
#target: test/vcl/invalid_syntax.acl