Bump actions/stale from 5 to 8 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run Python unit tests | |
run: python3 -m unittest tests/zeta | |
- name: Verify that the Docker image for the action builds | |
run: docker build . --file Dockerfile | |
- name: Integration test 1 | |
uses: ./ | |
with: | |
input-one: something | |
input-two: true | |
- name: Integration test 2 | |
uses: ./ | |
with: | |
input-one: something else | |
input-two: false | |
- name: Verify integration test results | |
run: python3 -m unittest unittesting/zeta |