Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083)

* Use new version of CI-CD Actions,  checkout@v3 instead of checkout@v2 on all jobs
* Use cSpell spell check, and use ubuntu-20.04 for formatting check
* Add in bot formatting action
* Update freertos_demo.yml and freertos_plus_demo.yml files to increase github log readability
* Add in a Qemu demo onto the workflows.
This commit is contained in:
Soren Ptak 2023-09-06 15:35:37 -04:00 committed by GitHub
parent 537007d96c
commit 3a2f6646f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1036 changed files with 134568 additions and 127281 deletions

View file

@ -1,6 +1,6 @@
/*
* FreeRTOS V202212.00
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
@ -92,7 +92,7 @@ void test_vQueueDelete_empty( void )
TEST_ASSERT_EQUAL( 0, getLastMallocSize() );
vQueueDelete( xQueue );
/* Veirfy that free was not called */
/* Verify that free was not called */
TEST_ASSERT_EQUAL_PTR( NULL, getLastFreedAddress() );
free( queueBuffer );
free( queueData );
@ -118,7 +118,7 @@ void test_vQueueDelete_half_full( void )
vQueueDelete( xQueue );
/* Veirfy that free was not called */
/* Verify that free was not called */
TEST_ASSERT_EQUAL_PTR( NULL, getLastFreedAddress() );
free( queueBuffer );
free( queueData );
@ -144,7 +144,7 @@ void test_vQueueDelete_full( void )
vQueueDelete( xQueue );
/* Veirfy that free was not called */
/* Verify that free was not called */
TEST_ASSERT_EQUAL_PTR( NULL, getLastFreedAddress() );
free( queueBuffer );
free( queueData );