Merge pull request #31 from ACMILabs/add/30-extended-codec-information #4
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: ACMI Transcoder CI | |
on: [push] | |
jobs: | |
build-and-test-transcoder: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.ref }} | |
- name: Build Python lint and test | |
run: | | |
cp dev.tmpl.env dev.env | |
docker-compose -f docker-compose-dev.yml up --build -d | |
- name: Run Python lint and test | |
run: docker exec transcoder make linttest | |
- name: cancel entire action if failed | |
if: failure() | |
uses: andymckay/cancel-action@master |