Skip to content

Merge branch 'master' of github.com:beac0n/ruroco #16

Merge branch 'master' of github.com:beac0n/ruroco

Merge branch 'master' of github.com:beac0n/ruroco #16

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make release
- name: Run tests end to end
run: make test_end_to_end;
- name: Run tests
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}