Skip to content

Bump actions/checkout from 3 to 4 #21

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #21

---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: GitHub Docker Action
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
push:
jobs:
github_docker_action:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: test file (success)
uses: ./
with:
path: 'tests/success.py'
- name: test file (failure)
uses: ./
with:
path: 'tests/failure.py'
continue-on-error: true
- name: test directory (failure)
uses: ./
with:
path: 'tests/'
continue-on-error: true