Skip to content

Simpler docker setup (#13) #8

Simpler docker setup (#13)

Simpler docker setup (#13) #8

name: GNU/Linux
on:
push:
branches: [ "main" ]
paths-ignore:
- 'LICENSE'
- 'README.md'
- 'RELEASE_CHECKLIST.md'
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- run: git config --global core.autocrlf false
- name: "Checkout repository"
uses: actions/checkout@v4
- name: Build
run: cargo build --all --locked --verbose
- name: Run tests
run: cargo test --verbose