Enhance README with GPT-4o vs FLAMES-100k comparison #75
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| L1-docker-build: | |
| name: L1 - Docker Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Build Docker image | |
| run: docker build -t flames-test . | |
| L2-smoke-test: | |
| name: L2 - Smoke Test | |
| runs-on: ubuntu-latest | |
| needs: L1-docker-build | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Build Docker image | |
| run: docker build -t flames-test . | |
| - name: Run dependency smoke test | |
| run: | | |
| docker run --rm flames-test python -c " | |
| import datasets | |
| import pandas | |
| import pyarrow | |
| import fastparquet | |
| print('FLAMES dependencies OK') | |
| " | |
| L3-hadolint: | |
| name: L3 - Hadolint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0 | |
| with: | |
| dockerfile: Dockerfile |