Files
LocalAGI/.github/workflows/tests.yml
Ettore Di Giacinto 43a46ad1fb Update tests.yml
2025-03-20 13:05:29 +01:00

27 lines
557 B
YAML

name: Run Go Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: arc-runner-localagent
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: |
sudo apt-get update && sudo apt-get install -y make
make tests
#sudo mv coverage/coverage.txt coverage.txt
#sudo chmod 777 coverage.txt
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}