| 123456789101112131415161718192021222324252627282930 |
- name: CI
- on:
- push:
- branches: [master]
- pull_request:
- branches: [master]
- jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Set up Python 3.8
- uses: actions/setup-python@v4
- with:
- python-version: 3.8
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- - name: Check
- run: pre-commit run --all-files
- docker:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Docker Build
- run: docker build . --tag tcgui:$(date +%s)
|