chore(nix): build and develop with nix (#173) #137
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: Integration tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.22" | |
- name: Run integration tests | |
run: make test-integration | |
- name: Check intall linux | |
shell: bash | |
run: curl -s https://raw.githubusercontent.com/cristianoliveira/ergo/master/install.sh | bash | |
- name: Check if executable is avaible | |
shell: bash | |
run: ergo -h # Check if ergo is available |