feat: adaptation de l'etl pour une utilisation avec Agents en intervention et Scaleway #44
Workflow file for this run
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, pull_request, workflow_dispatch] | |
| jobs: | |
| rubocop: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: ankane/setup-postgres@v1 | |
| with: | |
| postgres-version: 16 | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - run: make test |