mirror of
https://github.com/joshuadavidthomas/django-template-ast.git
synced 2025-07-07 19:35:32 +00:00
Add initial CI workflow
This commit is contained in:
parent
d69f67b74d
commit
d0c4f1d02b
1 changed files with 20 additions and 0 deletions
20
.github/workflows/rust.yml
vendored
Normal file
20
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
Loading…
Add table
Add a link
Reference in a new issue