Skip to content

Pin GitHub Actions runners to a specific version (#65) #94

Pin GitHub Actions runners to a specific version (#65)

Pin GitHub Actions runners to a specific version (#65) #94

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- main
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '**.md'
push:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '**.md'
jobs:
test:
name: Test Analyzer
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Build Docker Image
run: docker build -f Dockerfile -t python-analyzer .
- name: Run Tests
run: docker run --entrypoint "pytest" python-analyzer