aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2023-02-17 09:43:40 +0100
committerJeff Vander Stoep <jeffv@google.com>2023-02-17 09:43:40 +0100
commit4039605b26d3bf0eec4a91b19b2470efe16b29c8 (patch)
treefca6e46b70bad6ee4fb8ad4463affed590fb6d63 /.github
parent24d7bf285817e8c876ff819ec829fb6171200ce4 (diff)
downloadthread_local-4039605b26d3bf0eec4a91b19b2470efe16b29c8.tar.gz
Upgrade thread_local to 1.1.7
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/thread_local For more info, check https://cs.android.com/android/platform/superproject/+/master:tools/external_updater/README.md Test: TreeHugger Change-Id: I2678d456c0db7df97cd68cd6cab2edde6500bd08
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..1d0e51b
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,16 @@
+on: [push, pull_request]
+
+name: Continuous integration
+
+jobs:
+ test:
+ name: Test
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: dtolnay/rust-toolchain@1.59.0
+ with:
+ components: rustfmt
+ - run: cargo fmt -- --check
+ - run: cargo test
+ - run: cargo bench