Files
termscp/.github/workflows/linux.yml
Workflow config file is invalid. Please check your config file: yaml: line 5: did not find expected alphabetic or numeric character
ChristianVisintin 4aa262a273 Build all branches
2020-12-10 10:40:36 +01:00

23 lines
311 B
YAML

name: Linux
on:
push:
branches: [ * ]
pull_request:
branches: [ * ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose